Skip to main content
POST
/
v1
/
search
/
batches
Create a Batch Job
curl --request POST \
  --url https://api.bigdata.com/v1/search/batches \
  --header 'X-API-KEY: <api-key>'
{
  "batch_id": "2211478e-45a8-4d2e-ac51-77e25f6f7c79",
  "presigned_url": "https://s3.amazonaws.com/bucket/file?X-Amz-Algorithm=..."
}

Authorizations

X-API-KEY
string
header
required

Response

OK

batch_id
string
required

A unique identifier for your batch job. Use this ID to check the status of your batch.

presigned_url
string<uri>
required

A temporary, secure URL for uploading your input file. Upload your .jsonl file to this URL using a PUT request. Once uploaded, your batch job will begin processing automatically.

Required string length: 1 - 2083