Skip to main content
POST
/
conversation
/
search
Search conversation logs by call IDs
curl --request POST \
  --url https://atoms-api.smallest.ai/api/v1/conversation/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "callIds": [
    "CALL-1737000000000-abc123",
    "CALL-1737000000001-def456"
  ]
}
'
{
  "status": true,
  "data": {
    "logs": [
      {}
    ],
    "total": 2,
    "requestedCount": 3
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
callIds
string[]
required

Array of callIds to fetch

Required array length: 1 - 100 elements
Example:
[
"CALL-1737000000000-abc123",
"CALL-1737000000001-def456"
]

Response

Successful response

status
boolean
Example:

true

data
object