Skip to main content
GET
/
api
/
chats
/
{chatId}
Get a specific chat
curl --request GET \
  --url https://api.getstrada.com/api/chats/{chatId} \
  --header 'Authorization: Bearer <token>'
{
  "chat": {
    "chatId": "<string>",
    "agentId": "<string>",
    "customerUniqueId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "handedOffAt": "2023-11-07T05:31:56Z",
    "terminatedAt": "2023-11-07T05:31:56Z",
    "abandonedAt": "2023-11-07T05:31:56Z",
    "summary": "<string>",
    "analysis": {},
    "transcript": {
      "messages": [
        {
          "role": "bot",
          "content": "<string>",
          "toolCallId": "<string>",
          "toolCalls": [
            {}
          ]
        }
      ]
    },
    "chatVariables": {},
    "status": "active"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication

Path Parameters

chatId
string
required

ID of the chat to retrieve

Response

Successfully retrieved chat

chat
object
I