Get generation status

GET /generation/jobs/{id}/status

返回指定题目生成任务的状态,可用于轮询。

Path parameters

  • id string Required

    Format should match the following pattern: ^gen-.

Responses

  • 200 application/json

    generation found

    Hide response attributes Show response attributes object
    • id string

      Format should match the following pattern: ^gen-.

    • object string

      Value is generation.

    • created_at string(date-time)
    • finished_at string(date-time) | null
    • status string

      Values are queued, generating, succeeded, failed, or cancelled.

  • 404 application/json

    generation not found

GET /generation/jobs/{id}/status
curl \
 --request GET 'https://api.kuaichuti.net/v1/generation/jobs/{id}/status' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "gen-67d79d02e88e5d44933749f6",
  "object": "generation",
  "status": "queued",
  "created_at": "2025-03-17T11:54:42.117+08:00",
  "finished_at": null
}
Response examples (404)
{
  "error": {
    "type": "invalid_request_error",
    "message": "No such Generation job: invalid"
  }
}