curl --request GET \
--url http://localhost:8080/api/v1/contacts \
--header 'Authorization: Basic <encoded-value>'{
"status": "success",
"data": {
"results": [
{
"id": 163,
"type": "contact",
"first_name": "PayPal",
"last_name": "",
"email": "[email protected]",
"enabled": true,
"avatar_url": null,
"created_at": "2025-09-14T18:53:01.172243Z",
"updated_at": "2025-09-14T18:53:01.172243Z"
}
],
"total": 39,
"per_page": 100,
"total_pages": 1,
"page": 1
}
}curl --request GET \
--url http://localhost:8080/api/v1/contacts \
--header 'Authorization: Basic <encoded-value>'{
"status": "success",
"data": {
"results": [
{
"id": 163,
"type": "contact",
"first_name": "PayPal",
"last_name": "",
"email": "[email protected]",
"enabled": true,
"avatar_url": null,
"created_at": "2025-09-14T18:53:01.172243Z",
"updated_at": "2025-09-14T18:53:01.172243Z"
}
],
"total": 39,
"per_page": 100,
"total_pages": 1,
"page": 1
}
}Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>
Page number (required)
x >= 1Number of items per page (required, range 1–100)
1 <= x <= 100List of contacts
"success"
Show child attributes
Show child attributes
163
"contact"
"PayPal"
""
true
null
"2025-09-14T18:53:01.172243Z"
"2025-09-14T18:53:01.172243Z"
39
100
1
1
Was this page helpful?