download_assets
Mint signed download URLs for one or more assets — the same URLs the Nurama web app's "Download" button uses.
Read-only tool.
Mint signed download URLs for one or more assets — the same URLs the Nurama web app's "Download" button uses. Use when the user asks for downloadable links to share. URLs expire after a few minutes; treat them as ephemeral.
Input
| Property | Type | Required | Description |
|---|---|---|---|
assetIds | string[] | yes | Array of asset UUIDs to mint URLs for. min items 1 |
JSON Schema
{
"type": "object",
"properties": {
"assetIds": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "Array of asset UUIDs to mint URLs for."
}
},
"required": [
"assetIds"
],
"additionalProperties": false
}