Description
Get page of models
Headers
application/json
Parameters
Search query
Current page number, default is 1
Number of models per page, default is 25
Minimum model price limit, default is 0
Maximum model price limit, default is undefined
Filter models by product type. Available values: cg, printable. Query will return all products if value is undefined.
Filter models by category. Category ids are available via GET /v1/categories endpoint.
Filter models by file extension. File extensions separated by comma, example: extensions: "obj,stl"
Include models suitable only for adults. The default value is false.
Include or exclude discounted models.
Include or exclude low poly models. (Only available when product type is not printable)
Include or exclude animated models. (Only available when product type is not printable)
Include or exclude PBR models. (Only available when product type is not printable)
Include or exclude rigged models. (Only available when product type is not printable)
Include or exclude collections. (Only available when product type is not printable)
In order to filter by quality, minimum admin rating can be provided. Value should be in [0.0, 10.0]
Sort models by: best_match | sales | newest | oldest | lower_price | higher_price
Filters models by polygons count. Available values: lt_5k | range_5k_10k | range_10k_50k | range_50k_100k | range_100k_250k | gt_250k
Filter models by license. Only available value: exclude_editorial
Example Response
{
"total": 2,
"models": [
{
"id": 1,
"status": "published",
"author_name": "joe",
"url": "http://test.host/3d-print-models/parent-category/child-category/joe-vase",
"slug": "joe-vase",
"category_slug": "parent-category",
"subcategory_slug": "child-category",
"category_id": 1,
"subcategory_id": 2,
"title": "Joe Vase",
"downloadable": true,
"description": "Ligula Fusce Sollicitudin
",
"raw_description": "Ligula Fusce Sollicitudin",
"animated": true,
"rigged": true,
"game_ready": true,
"type": "printable",
"license": "royalty_free",
"custom_license": null,
"tags": [
"gift",
"home",
"printable",
"uniq",
"vase"
],
"only_for_adults": false,
"prices": {
"download": 11.1
},
"files": [
{
"id": 1,
"name": "cube.stl",
"size": 684,
"download_url": "http://api.test.host/v1/models/1/files/1"
},
{
"id": 2,
"name": "triangle.stl",
"size": 684,
"download_url": "http://api.test.host/v1/models/1/files/2"
}
],
"availableFileExtensions": [
"stl"
],
"thumbnails": [
"https://img-new.cgtrader.com/items/705406/e609613cd5/grey-alien.jpg",
"https://img-new.cgtrader.com/items/705406/sasdas/grey-alien-3d.jpg"
]
},
{
"id": 2,
"status": "published",
"author_name": "joe",
"url": "http://test.host/3d-models/parent-category/child-category/black-car",
"slug": "black-car",
"category_slug": "parent-category",
"subcategory_slug": "child-category",
"category_id": 1,
"subcategory_id": 2,
"title": "Black Car",
"downloadable": true,
"description": "Ligula Fusce Sollicitudin
",
"raw_description": "Ligula Fusce Sollicitudin",
"animated": false,
"rigged": false,
"game_ready": false,
"type": "cg",
"license": "general",
"custom_license": null,
"tags": [
"car",
"tag2",
"tag3",
"tag4",
"tag5"
],
"only_for_adults": false,
"prices": {
"download": 10.0
},
"files": [
],
"availableFileExtensions": [
],
"thumbnails": [
"https://img-new.cgtrader.com/items/705406/e609613cd5/grey-alien.jpg",
"https://img-new.cgtrader.com/items/705406/sasdas/grey-alien-3d.jpg"
],
"info": {
"polygons": null,
"vertices": null,
"geometry_type": null,
"collection": null,
"textures": null,
"materials": null,
"plugins_used": null,
"uvw_mapping": null,
"unwrapped_uvs": null
}
}
]
}