Skip to main content
POST
/
api
/
video
/
signed-urls
Create signed URLs in bulk
curl --request POST \
  --url https://api-prod.nomadicml.com/api/video/signed-urls \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "requests": [
    {
      "request_id": "<string>",
      "video_id": "<string>",
      "path": "<string>",
      "expires_in": 900,
      "method": "GET",
      "share_token": "<string>",
      "allow_sample": false,
      "batch_id": "<string>"
    }
  ]
}
'
{
  "results": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.nomadicml.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <NOMADIC_API_KEY>.

Body

application/json
requests
object[]
required
Maximum array length: 50

Response

Successful response.

results
object
required

Map of request_id to a signed URL result or per-item error.