GET
/v1/batches

Response Body

application/json

curl -X GET "https://example.com/v1/batches"
{
  "items": [
    {
      "id": "string",
      "status": "pending",
      "window": "24h",
      "request_count": 0,
      "created_at": "string",
      "updated_at": "string",
      "completed_at": "string",
      "total_prompt_tokens": 0,
      "total_completion_tokens": 0,
      "total_tokens": 0,
      "total_cost_micros": 0
    }
  ]
}