Retrieve generation job

GET /generation/jobs/{id}

返回指定题目生成任务的详细信息。

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.

    • creation_type string Required

      Values are knowledge_base, question_bank, or oneline.

    • prompt string

      Maximum length is 256.

    • content string

      Maximum length is 100000.

    • file object
      Hide file attributes Show file attributes object
    • question_rules array[object]
      Hide question_rules attributes Show question_rules attributes object
      • type string Required

        Values are single_choice, multiple_choice, true_or_false, multiple_blank, or short_answer.

      • count integer Required
    • metadata object | null
  • 404 application/json

    generation not found

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