GET
/
async
/
chat
/
completions
curl --request GET \
  --url https://api.perplexity.ai/async/chat/completions \
  --header 'Authorization: Bearer <token>'
{
  "next_token": "<string>",
  "requests": [
    {
      "id": "<string>",
      "created_at": 123,
      "started_at": 123,
      "completed_at": 123,
      "failed_at": 123,
      "model": "<string>",
      "status": "CREATED"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:20

Maximum number of requests to return.

next_token
string

Token for fetching the next page of results. Ensure this token is URL-encoded when passed as a query parameter.

Response

200 - application/json

Successfully retrieved list of async chat completion requests.

The response is of type object.