Skip to main content
GET
/
api
/
v1
/
generation
/
generations-v2
/
{generation_id}
/
status
Get Generation Status V2
curl --request GET \
  --url https://api.devkit4ai.com/api/v1/generation/generations-v2/{generation_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "generated_image_url": "<string>"
}
Retrieve the current status and results of a specific generation request.

Headers

Authorization
string
required
Bearer token for authentication

Path Parameters

generation_id
string
required
Unique generation identifier

Response

id
string
Generation unique identifier
status
string
Current status (pending, processing, completed, failed)
result
object
Generation result (when completed)
error
string
Error message (if failed)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

generation_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required
status
string
required

Generation status: pending, processing, completed, failed

generated_image_url
string | null