curl --request GET \
--url https://sandbox.api.fin.com/v2/customers \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 40,
"total_page": 1,
"total": 2
},
"customers": [
{
"customer_id": "ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06",
"type": "BUSINESS",
"business_name": "Fin.com",
"email": "m@tech.com",
"phone": "+8801529876543",
"country_of_incorporation": "BGD",
"customer_status": "IN_COMPLIANCE",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06&tos_policies_value=6955e70b-f9f3-4076-b1ce-5c897085dd24",
"created_at": "2026-04-13T11:38:57Z",
"updated_at": "2026-04-13T11:40:51Z"
},
{
"customer_id": "56c41b8e-e650-4f55-94f6-26a888a9b64d",
"type": "INDIVIDUAL",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone": "+14155551234",
"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=e9414388-fbdf-4407-b5c2-bc39eae3645b",
"created_at": "2026-04-01T12:03:03Z",
"updated_at": "2026-04-01T12:03:03Z"
}
]
}
}Retrieve a list of customers filtered by type
curl --request GET \
--url https://sandbox.api.fin.com/v2/customers \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 40,
"total_page": 1,
"total": 2
},
"customers": [
{
"customer_id": "ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06",
"type": "BUSINESS",
"business_name": "Fin.com",
"email": "m@tech.com",
"phone": "+8801529876543",
"country_of_incorporation": "BGD",
"customer_status": "IN_COMPLIANCE",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06&tos_policies_value=6955e70b-f9f3-4076-b1ce-5c897085dd24",
"created_at": "2026-04-13T11:38:57Z",
"updated_at": "2026-04-13T11:40:51Z"
},
{
"customer_id": "56c41b8e-e650-4f55-94f6-26a888a9b64d",
"type": "INDIVIDUAL",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone": "+14155551234",
"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=e9414388-fbdf-4407-b5c2-bc39eae3645b",
"created_at": "2026-04-01T12:03:03Z",
"updated_at": "2026-04-01T12:03:03Z"
}
]
}
}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