cURL
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)>
Authorization: Basic <base64(api_key:api_secret)>
Page number (defaults to 1)
x >= 1
Number of items per page (defaults to 30, max 100)
1 <= x <= 100
List of contacts
"success"
Show child attributes
Was this page helpful?