# fetchConversation

Fetches the details of a conversation based on its hash.

### Usage

```ts
const conversationHash = '0x...';
const conversation = await chat.fetchConversation(conversationHash);
```

### Returns

`Promise<Conversation>`

A promise that resolves to the details of the conversation corresponding to the specified conversation hash.

### Parameters

#### conversationHash

* **Type** `ConversationHash`

The hash of the target conversation that you want to fetch the details for.
