> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onepay.la/llms.txt
> Use this file to discover all available pages before exploring further.

# Balance

> Obtener balance de una billetera.

<ParamField path="customer_id" type="string" required placeholder="9dd4158b-0e45-42bc-b56f-a4c1f856814d">
  ID del cliente cuyo balance quieres consultar. [Crear cliente](/client/customers/create).
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
     "id": "268efd35-772c-41ef-bcf5-0028d9db7092",
     "balance": 100000,
     "label": "$100.000"
  }
  ```

  ```json 404 theme={null}
  {
    "message": "Registro no encontrado, Cliente no existe",
    "code": 10002,
    "code_name": "record_not_found"
  }
  ```
</ResponseExample>
