List images

List images

get

Get all the images you have generated.

Authorizations
Query parameters
pagenumberOptional

The page number to retrieve.

Default: 0
limitnumber · max: 200Optional

The maximum number of items per page.

Default: 50
for_publicnumberOptional

If 1, only public images are returned.

Default: 0
Responses
200

Successful response

application/json
get
GET /api/v1/images HTTP/1.1
Host: shortgenius.com
Authorization: Bearer JWT
Accept: */*
{
  "images": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "url": null,
      "type": "text",
      "state": "pending",
      "created_at": "text",
      "updated_at": null,
      "prompt": "text",
      "is_nsfw": true,
      "aspect_ratio": "9:16",
      "image_style_id": null
    }
  ],
  "has_more": true
}

Last updated