Skip to main content
GET
/
api
/
conversations
/
{id}
GET /api/conversations/{id}
curl --request GET \
  --url https://api.sippet.ai/api/conversations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "channel": "chat",
      "mode": "text",
      "public_id": "<string>",
      "status": "active",
      "ai_agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": {}
    },
    "relationships": {
      "ai_agent": {
        "data": {
          "id": "<string>",
          "type": "<string>",
          "meta": {}
        }
      },
      "call": {
        "data": {
          "id": "<string>",
          "type": "<string>",
          "meta": {}
        }
      },
      "conversation_items": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>",
            "meta": {}
          }
        ]
      },
      "organisation": {
        "data": {
          "id": "<string>",
          "type": "<string>",
          "meta": {}
        }
      }
    }
  },
  "included": [
    "<unknown>"
  ],
  "meta": {}
}

Documentation Index

Fetch the complete documentation index at: https://sippet.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT for bearer authentication

Path Parameters

id
string
required

Query Parameters

include
string

Relationship paths to include in the response

Pattern: ^()(,())*$
fields
object

Limits the response fields to only those listed for each type

Example:
{
"Conversation": "id,status,channel,mode,public_id,metadata,ai_agent_id"
}

Response

Success

data
object

A "Resource object" representing a Conversation

included
any[]
meta
object