---
title: "Get customer balance"
method: GET
path: "/v1/customers/{id}/balance"
tags: ["Customers"]
---

# Get customer balance

`GET /v1/customers/{id}/balance`

Retrieve the current balance for a customer. Returns the latest cached
balance from the database (synced periodically from on-chain).

For real-time balance, call `POST /v1/customers/:id/sync-balance` first.

## Path parameters

- `id` string, required

## Response `200`

Customer balance

- object — Customer balance
  - `customerId` string
  - `onchainAddress` string
  - `balanceUsdc` string — Available USDC balance
  - `pendingChargesUsdc` string — USDC in pending charges
  - `availableUsdc` string — Balance minus pending charges
  - `lastSyncedAt` string, date-time, nullable

## Other responses

- `401` — Unauthorized
- `404` — Customer not found

---

[API](https://skmtc.net/usedrip/apis/drip-api.md) · [All operations](https://skmtc.net/usedrip/apis/drip-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usedrip/drip-api/versions/2cb1567969ca/schema)
