Hi amazing community!
I’m trying to get all the list of items of a specific collection and get the download link of each 3D model.
Do you know which API command I need to use in order to do that?
thank you,
Stefanino
Hi amazing community!
I’m trying to get all the list of items of a specific collection and get the download link of each 3D model.
Do you know which API command I need to use in order to do that?
thank you,
Stefanino
Hello,
You can get a list of models in a collection with the GET /v3/collections/{UID}/models
endpoint:
https://docs.sketchfab.com/data-api/v3/index.html#!/collections/get_v3_collections_uid_models
You can then get the download link for a model with the GET /v3/models/{UID}/download
endpoint:
https://sketchfab.com/developers/download-api/downloading-models
thank you!