sketchfab-download
Download 3D models from Sketchfab in formats like gltf, glb, usdz, or source. Specify the model ID and output path to save directly to your desired location.
Instructions
Download a 3D model from Sketchfab
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Preferred format to download the model in (defaults to gltf if available) | |
modelId | Yes | The unique ID of the Sketchfab model to download (must be downloadable) | |
outputPath | No | Local directory or file path to save the downloaded file (will use temp directory if not specified) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Preferred format to download the model in (defaults to gltf if available)",
"enum": [
"gltf",
"glb",
"usdz",
"source"
],
"type": "string"
},
"modelId": {
"description": "The unique ID of the Sketchfab model to download (must be downloadable)",
"type": "string"
},
"outputPath": {
"description": "Local directory or file path to save the downloaded file (will use temp directory if not specified)",
"type": "string"
}
},
"required": [
"modelId"
],
"type": "object"
}