## Request **post** `/assets/{assetId}/download` Request a link to download the given `assetId` in the given `targetFormat` ### Path Parameters - `assetId: string` ### Body Parameters - `targetFormat: optional "gif" or "heif" or "jpeg" or 10 more` The format to download the asset in - `"gif"` - `"heif"` - `"jpeg"` - `"jpg"` - `"png"` - `"svg"` - `"webp"` - `"avif"` - `"tif"` - `"tiff"` - `"glb"` - `"fbx"` - `"obj"` ### Returns - `url: string` The signed URL to download the asset in the given format ### Example ```http curl https://api.cloud.scenario.com/v1/assets/$ASSET_ID/download \ -H 'Content-Type: application/json' \ -u "$SCENARIO_SDK_API_KEY:SCENARIO_SDK_API_SECRET" \ -d '{}' ``` #### Response ```json { "url": "url" } ```