Nurama Developers

get_public_download_url

Return a signed download URL for a public-download token — what a `nurma.link` page actually redirects to when the user clicks Download.

Read-only tool.

Return a signed download URL for a public-download token — what a nurma.link page actually redirects to when the user clicks Download. Use to fetch the underlying file programmatically when you only have the public token. Public endpoint — no auth required.

Input

PropertyTypeRequiredDescription
tokenstringyesThe 10-character public download token.

JSON Schema

{
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "The 10-character public download token."
    }
  },
  "required": [
    "token"
  ],
  "additionalProperties": false
}

On this page