GET
/v1/customers/{customer}Retrieve a customer
Retrieves a customer by its identifier. Use expand to include selected related fields in the response when needed. The response contains the customer object or the representation used when a customer has been deleted.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
customerstringrequired
The unique identifier of the customer; maximum 5,000 characters.
expandarray<string>optional
Fields to expand in the response.
200Returns the requested customer object, or a deleted customer object containing its identifier and deleted state.
addressobjectoptional
The customer's address.
balanceintegeroptional
The current balance, if any, that's stored on the customer in their default currency. If negative, the customer has credit to apply to their next invoice. If positive, the customer has an amount owed that's added to their next invoice. The balance only considers amounts that Stripe hasn't successfully applied to any invoice. It doesn't reflect unpaid invoices. This balance is only taken into account after invoices finalize. For multi-currency balances, see [invoice_credit_balance](https://docs.stripe.com/api/customers/object#customer_object-invoice_credit_balance).
business_namestringoptional
The customer's business name.
cash_balanceobjectoptional
The current funds being held by Stripe on behalf of the customer. You can apply these funds towards payment intents when the source is "cash_balance". The `settings[reconciliation_mode]` field describes if these funds apply to these payment intents manually or automatically.
createdintegerrequired
Time at which the object was created. Measured in seconds since the Unix epoch.
currencystringoptional
Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) the customer can be charged in for recurring billing purposes.
customer_accountstringoptional
The ID of an Account representing a customer. You can use this ID with any v1 API that accepts a customer_account parameter.
default_sourcestringoptional
ID of the default payment source for the customer.
If you use payment methods created through the PaymentMethods API, see the [invoice_settings.default_payment_method](https://docs.stripe.com/api/customers/object#customer_object-invoice_settings-default_payment_method) field instead.
delinquentbooleanoptional
Tracks the most recent state change on any invoice belonging to the customer. Paying an invoice or marking it uncollectible via the API will set this field to false. An automatic payment failure or passing the `invoice.due_date` will set this field to `true`.
If an invoice becomes uncollectible by [dunning](https://docs.stripe.com/billing/automatic-collection), `delinquent` doesn't reset to `false`.
If you care whether the customer has paid their most recent subscription invoice, use `subscription.status` instead. Paying or marking uncollectible any customer invoice regardless of whether it is the latest invoice for a subscription will always set this field to `false`.
descriptionstringoptional
An arbitrary string attached to the object. Often useful for displaying to users.
discountobjectoptional
Describes the current discount active on the customer, if there is one.
emailstringoptional
The customer's email address.
idstringrequired
Unique identifier for the object.
individual_namestringoptional
The customer's individual name.
invoice_credit_balanceobjectoptional
The current multi-currency balances, if any, that's stored on the customer. If positive in a currency, the customer has a credit to apply to their next invoice denominated in that currency. If negative, the customer has an amount owed that's added to their next invoice denominated in that currency. These balances don't apply to unpaid invoices. They solely track amounts that Stripe hasn't successfully applied to any invoice. Stripe only applies a balance in a specific currency to an invoice after that invoice (which is in the same currency) finalizes.
invoice_prefixstringoptional
The prefix for the customer used to generate unique invoice numbers.
invoice_settingsobjectoptional
livemodebooleanrequired
If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
metadataobjectoptional
Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
namestringoptional
The customer's full name or business name.
next_invoice_sequenceintegeroptional
The suffix of the customer's next invoice number (for example, 0001). When the account uses account level sequencing, this parameter is ignored in API requests and the field omitted in API responses.
objectstringrequired
String representing the object's type. Objects of the same type share the same value.
phonestringoptional
The customer's phone number.
preferred_localesarray<string>optional
The customer's preferred locales (languages), ordered by preference.
shippingobjectoptional
Mailing and shipping address for the customer. Appears on invoices emailed to this customer.
sourcesobjectoptional
The customer's payment sources, if any.
subscriptionsobjectoptional
The customer's current subscriptions, if any.
taxobjectoptional
tax_exemptstringoptional
Describes the customer's tax exemption status, which is `none`, `exempt`, or `reverse`. When set to `reverse`, invoice and receipt PDFs include the following text: **"Reverse charge"**.
tax_idsobjectoptional
The customer's tax IDs.
test_clockstringoptional
ID of the test clock that this customer belongs to.
defaultError response.
errorobjectrequired
Error handling
customer must identify the customer to retrieve and may contain at most 5,000 characters. Use expand only with field names that can be expanded in the customer response.