Redirect to a signed download URL
GET
/api/public/{slug}/downloads/{token}
const url = 'https://example.com/api/public/example/downloads/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/public/example/downloads/exampleParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”slug
required
string
token
required
string
Responses
Section titled “Responses”Default Response