Skip to main content
GET
/
v1
/
customers
List Customers
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": "[email protected]",
        "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"
      }
    ]
  }
}

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