Skip to content

Get asset metadata by ID

HEAD
/api/assets/{configId}/{assetId}/{rendition}
curl --request HEAD \
--url 'https://example.com/api/assets/example/example/example?format=webp&version=latestpublished&download=true' \
--header 'Authorization: Bearer <token>'

Returns headers with asset metadata (content-type, content-length, etc.) without the body. Used for streaming media.

configId
required
string
assetId
required
string
rendition
required
string
format

Output format for the asset (e.g., webp, jpg)

string
Example
webp
version

Version of the asset to retrieve (e.g., ‘latest’, ‘latestpublished’, or specific version number)

string
Example
latestpublished
download

If set, forces download with Content-Disposition header

string
Example
true

Asset metadata in headers

Asset not found