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

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>.

Path Parameters

video_id
string
required

Nomadic video identifier.

Body

application/json
path
string
expires_in
integer
default:900
Required range: x >= 60
method
enum<string>
default:GET
Available options:
GET,
HEAD
share_token
string
allow_sample
boolean
default:false
batch_id
string

Response

Successful response.

url
string<uri>
expires_at
string
method
string
default:GET