nftokens
Get CDN asset URLs for an NFT
get
/nft/assets/urls
operationId: nft-getAssetUrls

Returns the list of fetched CDN assets for a given NFToken — typically the primary image, any video, and thumbnails — each with content type and file size. Only assets in the fetched state are returned; pending or failed assets are omitted. For batch lookups across many tokens, prefer /nft/assets/urls/batch.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Query Parameters
NameTypeDefaultDescription
tokenId
required
string
XRPL NFToken identifier (hex).
Responses
200
application/json
Successful response
FieldTypeDescription
tokenId
string
XRPL NFToken identifier (hex).
assets
object[]
All known CDN assets for the token.
assets[].type
string
Asset type label (e.g. "image", "video", "thumbnail").
assets[].cdnUrl
string
Publicly reachable CDN URL for the asset.
assets[].contentType
string
MIME type of the asset.
assets[].fileSize
number
Asset size in bytes.
Example
Json
{
  "tokenId": "00081388A20EAE7B7B6C32CB7C3F0A4F02D0D8D4E0D0E0F0CEE12345678ABCDEF",
  "assets": [
    {
      "type": "image",
      "cdnUrl": "https://cdn.honeycluster.dev/nfts/00081388/main.png",
      "contentType": "image/png",
      "fileSize": 524288
    },
    {
      "type": "thumbnail",
      "cdnUrl": "https://cdn.honeycluster.dev/nfts/00081388/thumb.png",
      "contentType": "image/png",
      "fileSize": 32768
    }
  ]
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}