API ReferenceConversations API

Get a conversation

Retrieve a conversation by ID with ownership verification **Features:** - Retrieves conversation metadata including creation timestamp - Automatic ownership verification (user can only access their own conversations) - Returns OpenAI-compatible conversation object **Response Fields:** - `id`: Conversation ID with `conv_` prefix - `object`: Always "conversation" - `created_at`: Unix timestamp - `metadata`: User-defined key-value pairs

GET
/v1/conversations/{conv_public_id}
Authorization<token>

Type "Bearer" followed by a space and JWT token.

In: header

Path Parameters

conv_public_idstring

Conversation ID (format: conv_xxxxx)

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://loading/v1/conversations/string"
{
  "created_at": 0,
  "id": "string",
  "metadata": {
    "property1": "string",
    "property2": "string"
  },
  "object": "string",
  "project_id": "string",
  "referrer": "string",
  "title": "string",
  "updated_at": 0
}
{
  "code": "string",
  "error": "string",
  "message": "string",
  "request_id": "string"
}
{
  "code": "string",
  "error": "string",
  "message": "string",
  "request_id": "string"
}
{
  "code": "string",
  "error": "string",
  "message": "string",
  "request_id": "string"
}
{
  "code": "string",
  "error": "string",
  "message": "string",
  "request_id": "string"
}