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": "John",
        "last_name": "Doe",
        "email": "john.doe@example.com",
        "phone": "+14724480512",
        "country_of_residence": "USA",
        "customer_status": "INCOMPLETE",
        "tos_policies_url": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}
This endpoint was deprecated on May 20, 2026. Use List Customers V2 instead.

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from Issue a 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