Skip to main content
GET
/
v1
/
batches
/
{id}
/
payouts
List payouts in a batch
curl --request GET \
  --url https://api.antonpayments.com/v1/batches/{id}/payouts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "pay_abc123",
      "merchant_id": "<string>",
      "payee_id": "<string>",
      "instrument_id": "<string>",
      "batch_id": "<string>",
      "status": "created",
      "method": "<string>",
      "source_amount": "<string>",
      "source_currency": "<string>",
      "dest_amount": "<string>",
      "dest_currency": "<string>",
      "exchange_rate": "<string>",
      "fee": "<string>",
      "fee_currency": "<string>",
      "fee_bearer": "merchant",
      "fixed_side": "fixed_source",
      "total_debited": "<string>",
      "total_debited_currency": "<string>",
      "rail_type": "<string>",
      "rail_provider": "<string>",
      "rail_reference": "<string>",
      "network": "<string>",
      "wallet_address": "<string>",
      "tx_hash": "<string>",
      "cancelled_reason": "<string>",
      "purpose": "<string>",
      "reference": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "screened_at": "2023-11-07T05:31:56Z",
      "approved_at": "2023-11-07T05:31:56Z",
      "processed_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "failed_at": "2023-11-07T05:31:56Z",
      "cancelled_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Path Parameters

id
string
required

Resource identifier.

Query Parameters

limit
integer
default:20

Maximum number of items to return (default 20, max 100).

Required range: x <= 100
cursor
string

Pagination cursor from previous response's next_cursor.

Response

Paginated list of payouts.

data
object[]
required
has_more
boolean
required
next_cursor
string