cURL
curl --request GET \ --url https://app.replyify.ai/api/contacts \ --header 'Authorization: Bearer <token>'
Retrieve a list of contacts in your workspace
curl -X GET "https://app.replyify.ai/api/contacts" \ -H "Authorization: Bearer rpl_your_api_key"
{ "data": [ { "id": "uuid", "first_name": "John", "last_name": "Doe", "email": "lead@example.com", "title": "VP of Sales", "company_id": "uuid", "companies": { "name": "Acme Inc" } } ] }