Skip to main content
GET
/
query
/
conversations
/
{conversationId}
Get a conversation and its turns
curl --request GET \
  --url https://api.datalinks.com/api/v1/query/conversations/{conversationId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "turns": [
    {
      "runId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "question": "<string>",
      "result": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token for authentication. Submit the token using the Authorization header: Authorization: Bearer <token>.

Path Parameters

conversationId
string<uuid>
required

Response

The conversation and its turns.

id
string<uuid>
required
title
string
required
turns
object[]
required