Skip to main content
GET
Retrieve processed balances for a batch

Retrieve Balance Results

Retrieve processed balance results for a previously submitted batch. This endpoint supports pagination to handle large result sets efficiently.

Balance Status Codes

The balance_status_code field indicates the outcome of the balance check:
A null balance with a non-zero status code indicates that the balance check failed for the specified reason.

Pagination

For batches with more results than the specified limit, use pagination:

Best Practices

  1. Poll periodically - If processing is not complete, poll every 30-60 seconds
  2. Handle pagination - Always check has_more and use next_page_token for complete results
  3. Process status codes - Check balance_status_code to understand failed balance checks
  4. Implement retries - Add exponential backoff for transient errors (5xx status codes)

Authorizations

Authorization
string
header
required

Authentication to the API is performed via Bearer Token Authentication. Provide your API key as the bearer token in the Authorization header.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.

Query Parameters

batchId
string
required

The ID of the batch to retrieve balances for

limit
integer
default:100

The number of balances to return per page. Maximum is 100.

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

A token to use as the cursor. Retrieves balances starting after this token.

Response

Balances retrieved successfully

batch_id
string

Unique identifier of the batch.

total_processed
integer

Total number of authorizers processed in the batch.

balances
object[]

List of balance records for each authorizer.

has_more
boolean

Indicates if more records are available after this page.

next_page_token
string

Token to pass into the next request to fetch more balances.