Skip to main content
POST
/
seismic
/
batchdownload
Download multiple seismic objects as a ZIP archive
curl --request POST \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/seismic/batchdownload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    4503599627370496
  ]
}
'
"<string>"

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Body

application/json

The filter that determines the seismic objects to return.

items
integer<int64>[]
required

The list of seismic objects to include in the ZIP archive, specified by internal id.

A server-generated ID for the object.

Required range: 1 <= x <= 9007199254740991

Response

The generated ZIP archive file

The response is of type string<binary/zip>.

Last modified on April 23, 2026