curl --request GET \
--url https://rcur.app/api/v2/customers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "abc123def456",
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"created_at": "2025-01-15 10:30:00",
"number": "CUST-001",
"phone": "+31612345678",
"organization_name": "Acme B.V.",
"address": "Keizersgracht 1",
"postal_code": "1015AA",
"city": "Amsterdam",
"country": "NL",
"vat_number": "NL123456789B01",
"locale": "nl",
"mollie_customer_id": "cst_abc123"
}
],
"links": {
"first": "https://rcur.app/api/v2/customers?page=1",
"last": "https://rcur.app/api/v2/customers?page=3",
"prev": "<string>",
"next": "https://rcur.app/api/v2/customers?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 3,
"path": "https://rcur.app/api/v2/customers",
"per_page": 15,
"to": 15,
"total": 42
}
}curl --request GET \
--url https://rcur.app/api/v2/customers \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "abc123def456",
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"created_at": "2025-01-15 10:30:00",
"number": "CUST-001",
"phone": "+31612345678",
"organization_name": "Acme B.V.",
"address": "Keizersgracht 1",
"postal_code": "1015AA",
"city": "Amsterdam",
"country": "NL",
"vat_number": "NL123456789B01",
"locale": "nl",
"mollie_customer_id": "cst_abc123"
}
],
"links": {
"first": "https://rcur.app/api/v2/customers?page=1",
"last": "https://rcur.app/api/v2/customers?page=3",
"prev": "<string>",
"next": "https://rcur.app/api/v2/customers?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 3,
"path": "https://rcur.app/api/v2/customers",
"per_page": 15,
"to": 15,
"total": 42
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination