Check if customer exists

📘

API Refs

Request parameters

NameTypeDescriptionRequired
emailstringCustomer email address to checkyes

Response body

NameTypeDescriptionRequired
existsbooleanWhether the customer existsyes
stripeCustomerIdstringStripe customer ID (if exists)no

Description

This endpoint verifies if a customer exists by email and returns their information including active subscriptions. This is useful for checking customer status before attempting to create a new account or to provide different user experiences for existing vs new customers.

Response

{
  "exists": true,
  "stripeCustomerId": "cus_ExampleCustomerID123"
}