Command Palette

Search for a command to run...

Search Documentation

Search documentation topics, API endpoints, and guides

getWallet
Source

OpenAPI Documentation

GET /v1/balance

Retrieve wallet balance

Check the wallet that will fund customer API orders.

Last updated on 5/26/2026

Endpoint

get/v1/balance

Returns the wallet balance available to the authenticated customer or organization. Personal API keys read the user customer wallet; organization API keys read the organization customer wallet. Amount is an integer minor-unit value paired with an ISO currency code.

Authentication

Include your customer API key in the Authorization header:

shell
Authorization: Bearer $AUTOMATIC_PALLET_API_KEY

Request

Responses

200Customer wallet balance.
200 Response Schema
{
  "$ref": "#/components/schemas/Balance"
}
401Missing or invalid API key.
401 Response Schema
{
  "$ref": "#/components/schemas/ErrorResponse"
}
403API key lacks balance:read.
403 Response Schema
{
  "$ref": "#/components/schemas/ErrorResponse"
}
404Customer wallet mapping not found.
404 Response Schema
{
  "$ref": "#/components/schemas/ErrorResponse"
}

Example cURL Request

cURL
curl "https://automaticpallet.com/v1/balance" \
  -H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"