Skip to main content
GET
/
images
/
{key}
cURL
curl https://api.neuraldraft.io/v1/images/hero.background \
  -H "Authorization: Bearer ndsk_live_yourkey"
{
  "key": "hero.background",
  "url": "https://cdn.neuraldraft.io/prj_2NfQmBcKpXY8/hero-background-89hf.jpg",
  "width": 2048,
  "height": 1152,
  "bytes": 482911,
  "mime_type": "image/jpeg",
  "generated": true,
  "created_at": "2026-04-19T10:21:02Z"
}

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.

Path Parameters

key
string
required

Image key (any URL-safe identifier).

Example:

"hero.background"

Response

The image.

key
string
required
Example:

"hero.background"

url
string<uri>
required
Example:

"https://cdn.neuraldraft.io/prj_2NfQmBcKpXY8/hero-background-89hf.jpg"

width
integer
Example:

2048

height
integer
Example:

1152

bytes
integer
Example:

482911

mime_type
string
Example:

"image/jpeg"

generated
boolean

True if produced by AI generation; false if uploaded.

Example:

true

created_at
string<date-time>