Asset Types Endpoint
Metadata for recognized asset types.
Note: This endpoint returns JSON, but it is not a JSON API-compliant payload and cannot be filtered or ordered via the URL. See example below.
URL Endpoints
| Method | Endpoint | Returns | Description |
|---|---|---|---|
GET |
/asset-types |
Asset Types | List |
Sample JSON Data
{
"image": {
"title": "Image",
"prose_title": "image",
"sub_types": {
"asset_image": {
"jpeg": {
"title": "JPEG",
"content_types": [
"image/jpeg"
],
"extensions": [
"jpg",
"jpeg",
"jpe"
],
"embeddable": true
},
"png": {
"title": "PNG",
"content_types": [
"image/png"
],
"extensions": [
"png"
],
"embeddable": true
},
"gif": {
"title": "GIF",
"content_types": [
"image/gif"
],
"extensions": [
"gif"
],
"embeddable": true
}
}
}
}
}