Search Documentation
Search documentation topics, API endpoints, and guides
getWallet
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:
Authorization: Bearer $AUTOMATIC_PALLET_API_KEYRequest
Responses
200Customer wallet balance.
{
"$ref": "#/components/schemas/Balance"
}401Missing or invalid API key.
{
"$ref": "#/components/schemas/ErrorResponse"
}403API key lacks balance:read.
{
"$ref": "#/components/schemas/ErrorResponse"
}404Customer wallet mapping not found.
{
"$ref": "#/components/schemas/ErrorResponse"
}Example cURL Request
curl "https://automaticpallet.com/v1/balance" \
-H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"