GET
/
api
/
conversations
/
{conversation_id}
curl --request GET \
  --url https://app.all-hands.dev/api/conversations/{conversation_id} \
  --header 'Authorization: Bearer <token>'
{
  "conversation_id": "<string>",
  "title": "<string>",
  "last_updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "selected_repository": "<string>",
  "status": "RUNNING",
  "trigger": "GUI"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

conversation_id
string
required

Conversation ID

Response

200
application/json

Conversation details

The response is of type object.