Skip to main content
GET
/
v1
/
batches
/
{id}
/
results
List per-row processing results
curl --request GET \
  --url https://api.antonpayments.com/v1/batches/{id}/results \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "row": 123,
      "status": "success",
      "payout_id": "<string>",
      "beneficiary_id": "<string>",
      "instrument_id": "<string>",
      "error": "<string>",
      "skip_reason": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API keys are opaque strings prefixed by environment:

  • ak_live_* — production keys, accepted only on api.antonpayments.com.
  • ak_test_* — sandbox keys, accepted only on api.antonpayments.dev.

Include your key in the Authorization header: Bearer ak_test_....

Path Parameters

id
string
required
Pattern: ^bat_[a-zA-Z0-9]+$

Query Parameters

limit
integer
default:20

Items per page. Maximum 100.

Required range: 1 <= x <= 100
cursor
string

Opaque cursor returned by a previous list response. Omit for the first page.

Response

Per-row results.

data
object[]
required

Array of results for this page. Element schema varies by endpoint.

has_more
boolean
required

Whether more results exist beyond this page.

next_cursor
string

Cursor for the next page. Present only when has_more is true.