# Retrieve a cash balance Retrieves a customer’s cash balance. ## Prerequisites Before you can run the following code snippet, you need to call these APIs with the provided parameters to set up the prerequisite API object(s). 1. createCustomer POST /v1/customers {"name":"Jenny Rosen","email":"jennyrosen@example.com"} ## Request ```curl curl https://api.stripe.com/v1/customers/{{CUSTOMER_ID}}/cash_balance \ -u "<>" \ -H "Stripe-Version: 2026-02-25.preview" ``` ### Response ```json { "object": "cash_balance", "available": { "eur": 10000 }, "customer": "cus_OaCLf8Fi1nbFpJ", "livemode": false, "settings": { "reconciliation_mode": "automatic", "using_merchant_default": true } } ``` ## Returns The Cash Balance object for a given customer.