Skip to main content
GET
/
api
/
v1
/
customer
/
{customerId}
Get customer by ID
curl --request GET \
  --url https://staging.afx-server.com/api/v1/customer/{customerId} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "customerId": "<string>",
    "fullName": "<string>",
    "email": "jsmith@example.com",
    "phone": "<string>",
    "countryCode": "<string>",
    "kyc": {},
    "meta": {}
  }
}
Retrieve a specific customer by their unique identifier.

Authorizations

x-api-key
string
header
required

Static business API key from the dashboard

Path Parameters

customerId
string
required

The unique identifier of the customer

Response

Customer retrieved successfully.

data
object