GET
/
api
/
conversations
curl --request GET \
  --url https://app.all-hands.dev/api/conversations \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "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"
    }
  ],
  "next_page_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_id
string

Page ID for pagination

limit
integer
default:20

Number of conversations to return

Response

200 - application/json

Conversations

The response is of type object.