/api/image/*
Image NFTs (PNG/JPEG/WebP via SOCIAL_BLOB chunks). Active when Fork V4 is enabled.
GET /api/image/?limit=N&offset=N
Recent IMAGE NFTs.
curl 'https://api.ombra-net.com/api/image/?limit=20'
GET /api/image/:tokenId
Metadata only.
curl https://api.ombra-net.com/api/image/abcdef0123...
Response:
{
"tokenId": "...",
"blobId": "...",
"owner": "...",
"format": "image:png",
"width": 512,
"height": 512,
"mintedAt": ...
}
GET /api/image/:tokenId/file
Reassembled binary content. Served with appropriate Content-Type (image/png, image/jpeg, image/webp).
curl https://api.ombra-net.com/api/image/abcdef0123.../file > image.png
Cache-Control: public, max-age=31536000, immutable — content is content-addressed and never changes.
GET /api/image/owner/:address?limit=N
User's image collection.
curl https://api.ombra-net.com/api/image/owner/7a8b7038...