Poll the image generation status and fetch a created image via ID.
Method | URI |
---|---|
GET | https://api.placid.app/api/rest/images/{id} |
Get the {id}
as a result of the create image API call.
{
"id": 1,
"status": "queued",
"image_url": null,
"polling_url": null
}
Field | Values |
---|---|
id |
Unique image id for internal reference |
status |
queued The request has been put into the queue. finished The image has been created successfully. error There was an error. |
image_url |
URL to created image or null |
polling_url |
Endpoint that you can GET poll for status updates |