Skip to main content
GET
/
data
/
batches
List batches
curl --request GET \
  --url https://acusight.io/api/data/batches \
  --header 'Authorization: Bearer <token>'
{
  "data": "<unknown>",
  "error": {
    "code": "<string>",
    "details": "<string>",
    "message": "<string>"
  },
  "meta": {
    "count": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "success": true
}

Authorizations

Authorization
string
header
required

JWT access token. Paste the token only; the Bearer prefix is added automatically.

Query Parameters

project_id
string

Filter by project ID (use 'null' for unassigned batches)

stage
string

Filter by batch stage

source
string

Filter by batch source

device_id
string

Filter by device identifier

status
string

Filter by batch status

limit
integer

Page size (default 50, max 100)

offset
integer

Result offset

sort
string

Sort field (default created_at)

order
string

Sort direction (asc or desc)

Response

Paginated batch summaries

data
any
error
object
meta
object
success
boolean