Skip to main content
POST
/
api
/
batch
/
{batch_id}
/
analyses
/
bulk
Get batch analyses in bulk
curl --request POST \
  --url https://api-prod.nomadicml.com/api/batch/{batch_id}/analyses/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "video_ids": [
    "<string>"
  ]
}
'
{
  "analyses": [
    {}
  ],
  "unresolved_video_ids": [
    "<string>"
  ],
  "not_found_analysis_ids": [
    "<string>"
  ]
}

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

batch_id
string
required

Nomadic batch identifier.

Query Parameters

include_source_uri
boolean

Include original import URI when available.

Body

application/json
video_ids
string[]
required
Maximum array length: 500

Response

Successful response.

analyses
object[]
unresolved_video_ids
string[]
not_found_analysis_ids
string[]