Skip to main content
GET
/
api
/
autopilots
/
{autopilot}
/
threads
List threads for one autopilot.
curl --request GET \
  --url https://openagents.com/api/autopilots/{autopilot}/threads \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "autopilotId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "title": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Maximum records to return (endpoint specific caps apply).

Required range: x >= 1
Example:

100

Response

Autopilot thread list payload

data
object[]