curl --request GET \
--url https://sandbox.api.fin.com/v1/customers \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 2
},
"customers": [
{
"customer_id": "56c41b8e-e650-4f55-94f6-26a888a9b64d",
"type": "INDIVIDUAL",
"first_name": "Omran",
"last_name": "Jamal",
"email": "omran@omranjamal.me",
"phone": "+14724480512",
"country_of_residence": "USA",
"customer_status": "INCOMPLETE",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=56c41b8e-e650-4f55-94f6-26a888a9b64d&tos_policies_value=a93d34a1-fc39-48a1-afdb-fd5c4607c5df",
"created_at": "2025-12-22T06:41:18Z",
"updated_at": "2025-12-22T06:41:28Z"
}
]
}
}Retrieve a list of customers filtered by type
curl --request GET \
--url https://sandbox.api.fin.com/v1/customers \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 2
},
"customers": [
{
"customer_id": "56c41b8e-e650-4f55-94f6-26a888a9b64d",
"type": "INDIVIDUAL",
"first_name": "Omran",
"last_name": "Jamal",
"email": "omran@omranjamal.me",
"phone": "+14724480512",
"country_of_residence": "USA",
"customer_status": "INCOMPLETE",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=56c41b8e-e650-4f55-94f6-26a888a9b64d&tos_policies_value=a93d34a1-fc39-48a1-afdb-fd5c4607c5df",
"created_at": "2025-12-22T06:41:18Z",
"updated_at": "2025-12-22T06:41:28Z"
}
]
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Filter customers by type
INDIVIDUAL, BUSINESS Number of items to return per page
1 <= x <= 512The page number to retrieve
x >= 1List of customers retrieved successfully
Show child attributes