GET
/
conversations
{
  "limit": 123,
  "has_more": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "inputs": {},
      "status": "<string>",
      "introduction": "<string>",
      "created_at": 123,
      "updated_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication.

Query Parameters

user
string
required

User identifier.

last_id
string

ID of the last record for pagination.

limit
integer
default:20

Number of items per page (Default 20, Max 100).

Required range: 1 <= x <= 100
sort_by
enum<string>
default:-updated_at

Sorting field (e.g., -updated_at).

Available options:
created_at,
-created_at,
updated_at,
-updated_at

Response

200 - application/json

Successfully retrieved conversations list.

The response is of type object.