List generation jobs

GET /generation/jobs

返回当前账号下的所有题目生成任务。

Query parameters

Responses

  • 200 application/json

    generations found

    Hide response attribute Show response attribute object
    • list array[object]
      Hide list attributes Show list 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.

GET /generation/jobs
curl \
 --request GET 'https://api.kuaichuti.net/v1/generation/jobs' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "gen-67d79d01e88e5d449337498f",
      "object": "generation",
      "status": "queued",
      "created_at": "2025-03-17T11:54:41.693+08:00",
      "finished_at": null
    },
    {
      "id": "gen-67d79d01e88e5d449337498e",
      "object": "generation",
      "status": "queued",
      "created_at": "2025-03-17T11:54:41.691+08:00",
      "finished_at": null
    },
    {
      "id": "gen-67d79d01e88e5d449337498d",
      "object": "generation",
      "status": "queued",
      "created_at": "2025-03-17T11:54:41.689+08:00",
      "finished_at": null
    }
  ],
  "object": "list",
  "has_more": false
}