Skip to main content
GET
/
v2
/
customers
List Customers V2
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from /v1/oauth/token endpoint

Query Parameters

type
enum<string>
required

Filter customers by type

Available options:
INDIVIDUAL,
BUSINESS
per_page
integer
default:10

Number of items to return per page

Required range: 1 <= x <= 512
current_page
integer
default:1

The page number to retrieve

Required range: x >= 1

Response

List of customers retrieved successfully

data
object