Get Base Assets
GET/api/v1/rawmodel
Paginated response of your base assets. Search for base assets by name or tag
Request
Query Parameters
q string
Optional parameter to search for base assets by name or tag
Example: yourSearchString
Header Parameters
Authorization string
Example: Bearer {YOUR_AUTH_KEY}
Content-Type string
Example: application/json
Accept string
Example: application/json
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
data object[]
links object
meta object
{
"data": [
{
"id": 1,
"name": "teapot",
"processing": false,
"external": false,
"upload_status": "complete",
"size": 315088,
"created_at": "2022-05-24T15:05:47+02:00",
"rapid_models": [],
"scale_factor": "1",
"has_errors": true,
"tags": [
{
"id": 1,
"name": "Low-Poly",
"created_at": "2022-05-24T13:06:03.000000Z",
"updated_at": "2022-05-24T13:06:03.000000Z",
"pivot": {
"rawmodel_id": 1,
"tag_id": 1
}
}
],
"downloads": {
"error.log": "signed url for the error.log",
"info.log": "signed url for info.log",
"metrics.json": "signed url for the metrics.json",
"rpd_info.json": "signed url for the rpd_info.json",
"teapot.fbx": "signed url for the teapot.obj",
"thumb.jpg": "signed url for the thumb.jpg",
"warning.log": "signed url for the warning.log"
}
}
],
"links": {
"first": "https://url/api/v1/rawmodel?page=1",
"last": "https://url/api/v1/rawmodel?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://url/api/v1/rawmodel?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://url/api/v1/rawmodel",
"per_page": 10,
"to": 1,
"total": 1
}
}
Loading...