Retrieve a Chat

Guide to retrieving a Chat in the Fetch Hive API.

Get chat details

get

Retrieve details for a specific chat

Authorizations
Path parameters
agent_idstringRequired

Agent token

idstringRequired

Chat token

Responses
200
Successful response
application/json
get
GET /v1/agents/{agent_id}/chats/{id} HTTP/1.1
Host: api.fetchhive.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "chat": {
    "id": 1,
    "name": "text",
    "last_message_content": "text",
    "last_message_sent_at": "2025-06-26T14:35:47.708Z",
    "message_count": 1,
    "generated_at": "2025-06-26T14:35:47.708Z",
    "token": "text",
    "status": "text",
    "agent": {
      "token": "text"
    }
  }
}

Last updated

Was this helpful?