Images

List Images

List the images your account has generated.

These are exactly the URLs accepted as inputs elsewhere in the API — use this to look up what you can edit or animate.

GET/v1/imagesTry it

Authorizations

Authorizationstringheaderrequired

Bearer authentication header of the form Bearer <token>, where <token> is your SpicyAPI key (sk-spicy-…). Create one in the dashboard under API Keys.

Query parameters

limitinteger

How many to return, newest first. Defaults to 50.

Response

200application/json

Successful Response

dataAsset · object[]required

Your generated images, newest first.

Was this page helpful?

List Images
cURL
curl --request GET \
  --url 'https://api.spicyapi.com/v1/images?limit=50' \
  --header 'Authorization: Bearer $SPICYAPI_KEY'
200
JSON
{
  "data": [
    {
      "url": "https://cdn.spicyapi.com/outputs/a1b2/req_8f2a91c4-0.png",
      "source": "image",
      "created_at": "2026-08-23T10:14:02.000Z"
    }
  ]
}