Skip to main content
GET
/
async
/
chat
/
completions
List Async Chat Completions
curl --request GET \
  --url https://api.example.com/async/chat/completions \
  --header 'Authorization: Bearer <token>'
{
  "requests": [
    {
      "id": "<string>",
      "created_at": 123,
      "model": "<string>",
      "status": "CREATED",
      "started_at": 123,
      "completed_at": 123,
      "failed_at": 123
    }
  ],
  "next_token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

Successful Response

requests
AsyncApiChatCompletionsResponseSummary · object[]
required
next_token
string | null