> For the complete documentation index, see [llms.txt](https://docs.cartat.net/cartat-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cartat.net/cartat-api/whatsapp-official-api/templates/client-info.md).

# Client info

```http
GET /instance/
Authorization: Bearer <cartat_api_token>
Accept: application/json
```

Use this endpoint to read the authenticated instance details used by Cartat API.

### Response

The exact fields depend on the current instance configuration, but the response can include connection status, provider/type, and instance identifiers.

```json
{
  "id": 123,
  "status": "active",
  "provider": "meta",
  "type": "official"
}
```
