Customers
Get Customer
API reference for retrieving a specific customer
GET
/
customers
/
{customerId}
Copy
curl --request GET \
--url https://api-staging.stablestack.xyz/api/customers/{customerId} \
--header 'x-api-key: <x-api-key>'
Copy
{
"status": "success",
"data": {
"id": "85b148ab-3f6b-4d55-917f-3c8de668a48e",
"customer_type": "business",
"email": "contact@akande.com",
"phone": "+2348098765432",
"created_at": "2025-05-01T13:47:10.689Z",
"updated_at": "2025-05-09T14:57:30.534Z",
"status": "active",
"address": {
"line_1": "789 Business Avenue",
"line_2": "Suite 500",
"city": "Lagos",
"state": "Lagos",
"postal_code": "100001",
"country": "Nigeria"
},
"personal_info": {
"first_name": null,
"middle_name": null,
"last_name": null,
"birth_date": null
},
"financial_info": {
"account_purpose": "business operations",
"employment_status": null,
"expected_monthly_income": "5000000.00",
"most_recent_occupation": null,
"source_of_funds": "business revenue"
},
"business_info": {
"business_name": "Acme Inc.",
"business_type": "Technology Solutions",
"business_website": "https://acme.example.com"
}
}
}
Retrieves detailed information about a specific customer by their ID.
Headers
Path Parameters
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request GET \
--url https://api-staging.stablestack.xyz/api/customers/{customerId} \
--header 'x-api-key: <x-api-key>'
Copy
{
"status": "success",
"data": {
"id": "85b148ab-3f6b-4d55-917f-3c8de668a48e",
"customer_type": "business",
"email": "contact@akande.com",
"phone": "+2348098765432",
"created_at": "2025-05-01T13:47:10.689Z",
"updated_at": "2025-05-09T14:57:30.534Z",
"status": "active",
"address": {
"line_1": "789 Business Avenue",
"line_2": "Suite 500",
"city": "Lagos",
"state": "Lagos",
"postal_code": "100001",
"country": "Nigeria"
},
"personal_info": {
"first_name": null,
"middle_name": null,
"last_name": null,
"birth_date": null
},
"financial_info": {
"account_purpose": "business operations",
"employment_status": null,
"expected_monthly_income": "5000000.00",
"most_recent_occupation": null,
"source_of_funds": "business revenue"
},
"business_info": {
"business_name": "Acme Inc.",
"business_type": "Technology Solutions",
"business_website": "https://acme.example.com"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.