Gensprite
Jobs

Get a job

GET
/v1/jobs/{id}

Reads our own database. This path never calls fal or RunPod, which is what makes polling cheap enough to be the primary mode rather than a fallback.

Poll until status is terminal, waiting X-Poll-After seconds between reads. Treat an unrecognised status as running and keep polling.

Authorization

AuthorizationBearer <token>

API key: Authorization: Bearer gsk_.... Used by the Godot plugin, the MCP server and the engine.

In: header

Path Parameters

id*string
Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/jobs/string"
{  "id": "string",  "kind": "sprite",  "status": "queued",  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z",  "progress": 0,  "model": "string",  "cost": {    "tokens": 0  },  "input": {    "property1": null,    "property2": null  },  "files_expired": true,  "output": {    "files": [      {        "role": "string",        "url": "http://example.com",        "content_type": "string"      }    ]  },  "error": {    "code": "invalid_request",    "message": "string",    "details": {      "property1": null,      "property2": null    }  }}