Skip to main content
GET
/
api
/
v1
/
conversations
/
{conversation_id}
Get Conversation
curl --request GET \
  --url https://api.example.com/api/v1/conversations/{conversation_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "user_id": "<string>",
  "store_id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "conversation_history": [],
  "selected_items": [],
  "token_usage": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

conversation_id
string
required

Response

Successful Response

id
string
required

Unique conversation identifier

user_id
string | null

Identifier of the user who started this conversation

store_id
string | null

Store identifier associated with this conversation

created_at
string | null

Timestamp when the conversation was created (ISO 8601)

updated_at
string | null

Timestamp of the last message in this conversation (ISO 8601)

conversation_history
any[]

Full list of messages in the conversation

selected_items
any[]

Products added to cart during this conversation

token_usage
Token Usage · object

Token usage breakdown for this conversation