Get Export Infos
GET/api/v2/rapidmodel/:id/exports
Calling this endpoint return a list of links to download the exports and their respective infos
Please note that the export infos are generated only for glb and gltf formats
Request
Path Parameters
id integerrequired
The id of the rapid model
Example: 695
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object
rapid.glb object
download string
info object
images object[]
channels integer
compressedByteSize integer
height integer
mimetype string
slot string
width integer
rapid.usdz object
download string
info string
{
"data": {
"rapid.glb": {
"download": "signed s3 link to rapid.glb",
"info": {
"images": [
{
"channels": 3,
"compressedByteSize": 310996,
"height": 2048,
"mimetype": "image/jpeg",
"slot": "normal",
"width": 2048
}
]
}
},
"rapid.usdz": {
"download": "link to rapid.usdz",
"info": null
}
}
}
Loading...