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.
Successfully retrieved list of async chat completion requests.
Show child attributes
Unix timestamp of when the request was created.
The status of an asynchronous processing job.
CREATED, IN_PROGRESS, COMPLETED, FAILED Unix timestamp of when processing started.
Unix timestamp of when processing completed.
Unix timestamp of when processing failed.
Token for fetching the next page of results.
Was this page helpful?