cURL
curl --request GET \ --url https://api.fernhq.com/customers \ --header 'Authorization: Bearer <token>'
200
Example
{ "customers": [ { "customerId": "abc123", "customerStatus": "ACTIVE", "email": "[email protected]", "customerType": "INDIVIDUAL", "name": "John Doe", "verificationLink": "https://forms.fernhq.com/verify-customer/0423300f-ae6d-4e82-8afb-a3b430e22e29", "updatedAt": "2023-11-07T05:31:56Z", "organizationId": "8469411c-48c1-4e26-a032-44688be9cb4b", "availablePaymentMethods": [ "ACH", "WIRE", "SEPA", "CA_INTERAC", "IN_NEFT_RTGS_IMPS", "ARBITRUM", "BASE", "ETHEREUM", "OPTIMISM", "POLYGON", "SOLANA" ], "verificationIssues": [ { "code": "DOCUMENT_MISSING_BACK", "message": "Please upload clear photos of both the front and back of your ID.", "timestamp": "2023-10-01T12:00:00Z" } ] } ], "nextPageToken": "xyz"}
List all customers with cursor-based pagination
To authenticate server-side requests
Token for forward pagination
Number of items per page (default: 10, max: 100)
x >= 1
Organization ID to filter customers
Response schema for listing customers
Retrieved customers
Show child attributes
Page token to use to fetch next page
"xyz"
Was this page helpful?