curl --request GET \
--url https://app.all-hands.dev/api/conversations/{conversation_id}/trajectory \
--header 'Authorization: Bearer <token>'
{
"trajectory": [
{}
]
}
Get the conversation trajectory
curl --request GET \
--url https://app.all-hands.dev/api/conversations/{conversation_id}/trajectory \
--header 'Authorization: Bearer <token>'
{
"trajectory": [
{}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Conversation ID
Conversation trajectory
The response is of type object
.
Was this page helpful?