Analytics apiConversation

Get All Conversations

GET
/conversations
/conversations

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

The API key for an API integration

In: header

Query Parameters

limitstring

offsetstring

curl -X GET "https://api.analytics.inkeep.com/conversations?limit=string&offset=string" \
  -H "Authorization: Bearer <token>"

Conversations retrieved successfully

{
  "conversations": [
    {
      "id": "string",
      "externalId": "string",
      "externalUrl": "string",
      "type": "openai",
      "createdAt": "string",
      "updatedAt": "string",
      "projectId": "string",
      "integrationId": "string",
      "properties": {},
      "userProperties": {},
      "tags": [
        "string"
      ],
      "messages": [
        {
          "id": "string",
          "type": "openai",
          "externalId": "string",
          "externalUrl": "string",
          "conversationId": "string",
          "createdAt": "string",
          "updatedAt": "string",
          "role": "system",
          "content": "string",
          "name": "string",
          "links": [
            {
              "label": "string",
              "url": "string",
              "title": "string",
              "description": "string",
              "type": "documentation",
              "breadcrumbs": [
                "string"
              ]
            }
          ],
          "properties": {},
          "userProperties": {},
          "tool_calls": [
            {
              "id": "string",
              "type": "function",
              "function": {
                "name": "string",
                "arguments": "string"
              }
            }
          ]
        }
      ],
      "messagesOpenAIFormat": [
        {
          "role": "system",
          "name": "string",
          "content": "string",
          "tool_calls": [
            {
              "id": "string",
              "type": "function",
              "function": {
                "name": "string",
                "arguments": "string"
              }
            }
          ]
        }
      ]
    }
  ],
  "total": 0,
  "pageSize": 0,
  "count": 0
}