Skip to main content
GET
/
v1
/
pathway
/
chat
/
{id}
Pathway Chat
curl --request GET \
  --url https://us.api.bland.ai/v1/pathway/chat/{id} \
  --header 'authorization: <authorization>'
{
    data: [
        {
            "role": "user",
            "content": "message"
        },
        ... // more messages
    ]
}

Documentation Index

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

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

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
uuid
required
The chat ID created from the /pathway/chat/create endpoint.

Response

errors
array
List of errors or null.
data
array
Message objects for the conversation history.
{
    data: [
        {
            "role": "user",
            "content": "message"
        },
        ... // more messages
    ]
}