Agara

Get a batch group

GET
/trade/v1/batch-groups/{group_id}

Authorization

Authorization
Required
Bearer <token>

Personal access token issued from the web app's Settings → API tokens page. Send as Authorization: Bearer agt_….

In: header

Scope: batches:submit

Path Parameters

group_id
Required
string

The batch group to read

Format: "uuid"
curl -X GET "https://app.agara.xyz/trade/v1/batch-groups/497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "Authorization: Bearer <token>"

Group state with its chunk rows in slot order.

{
  "as_of": "2019-08-24T14:15:22Z",
  "chunk_count": 0,
  "chunks": [
    {
      "batch_hash": "string",
      "chunk_index": 0,
      "failure_reason": "string",
      "status": "string",
      "tx_hash": "string"
    }
  ],
  "completed_at": "2019-08-24T14:15:22Z",
  "group_id": "306db4e0-7449-4501-b76f-075576fe2d8f",
  "op_count": 0
}