curl --request POST \
--url https://api.renderjuice.com/api/external/v1/uploads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "<string>",
"fileType": "blend"
}
'{
"uploadUrl": "<string>",
"slug": "<string>",
"expiresAt": "2023-11-07T05:31:56Z"
}Create a presigned upload URL for a source asset and return the slug to use during job creation.
curl --request POST \
--url https://api.renderjuice.com/api/external/v1/uploads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "<string>",
"fileType": "blend"
}
'{
"uploadUrl": "<string>",
"slug": "<string>",
"expiresAt": "2023-11-07T05:31:56Z"
}API key authentication. Format: Bearer RJ-XXX.... Get your API key from the Renderjuice dashboard.
Success
Was this page helpful?