> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Chat Info • AI Agent SDK

> get_chat_info: Return metadata about a chat/channel (at least an ``id`` key).

# get\_chat\_info

<div className="flex items-center gap-2">
  <Badge color="blue">Async</Badge>
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**BasePlatformAdapter**](../classes/BasePlatformAdapter) class in the [**base**](../modules/base) module.

Return metadata about a chat/channel (at least an `id` key).

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
async def get_chat_info(chat_id: Any) -> Dict[str, Any]
```

## Parameters

<ParamField query="chat_id" type="Any" required={true}>
  No description available.
</ParamField>

### Returns

<ResponseField name="Returns" type="Dict[str, Any]">
  The result of the operation.
</ResponseField>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/bots/base.py#L403">
  `praisonaiagents/bots/base.py` at line 403
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Chat Feature" icon="comments" href="/docs/docs/features/chat" />

  <Card title="Conversation Stores" icon="database" href="/docs/docs/databases/overview" />
</CardGroup>
