curl --request GET \
--url https://api.perplexity.ai/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>"
}Lists all asynchronous chat completion requests for the authenticated user.
curl --request GET \
--url https://api.perplexity.ai/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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Maximum number of requests to return.
Token for fetching the next page of results. Ensure this token is URL-encoded when passed as a query parameter.
Was this page helpful?