curl -X GET "https://api.together.ai/v1/queue/metrics?model=my-org/video-generator" \
-H "Authorization: Bearer $TOGETHER_API_KEY"{
"messages_waiting": 12,
"messages_running": 3,
"total_jobs": 15
}Get the current queue statistics for a model, including pending and running job counts.
curl -X GET "https://api.together.ai/v1/queue/metrics?model=my-org/video-generator" \
-H "Authorization: Bearer $TOGETHER_API_KEY"{
"messages_waiting": 12,
"messages_running": 3,
"total_jobs": 15
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Model name to get metrics for
Was this page helpful?