Skip to main content
GET
/
images
cURL
curl "https://api.neuraldraft.io/v1/images?prefix=hero." \
  -H "Authorization: Bearer ndsk_live_yourkey"
{
  "data": [
    {
      "key": "hero.background",
      "url": "https://cdn.neuraldraft.io/prj_2NfQmBcKpXY8/hero-background-89hf.jpg",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "width": 2048,
      "height": 1152,
      "bytes": 482911,
      "mime_type": "image/jpeg",
      "generated": true
    }
  ],
  "meta": {
    "page": 123,
    "page_size": 123,
    "total": 123,
    "last_page": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.neuraldraft.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage keys via /projects/me/api-keys. Test-mode keys use the ndsk_test_ prefix.

Query Parameters

prefix
string

Filter by user-key prefix (e.g. hero. returns hero.background, hero.foreground).

Example:

"hero."

page
integer
default:1
Required range: x >= 1
page_size
integer
default:50
Required range: 1 <= x <= 200

Response

Paginated image list.

data
object[]
required
meta
object
required