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>"
}Retrieve a list of all asynchronous chat completion requests for a given user.
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>"
}Was this page helpful?