Skip to main content
GET
/
api
/
contacts
List Contacts
curl --request GET \
  --url https://app.replyify.ai/api/contacts \
  --header 'Authorization: Bearer <token>'
Fetch all contacts who have replied to your campaigns.

Query Parameters

client_id
string
Filter contacts linked to a specific client (via replies). Returns only contacts who have replied to this client’s campaigns.

Examples

curl -X GET "https://app.replyify.ai/api/contacts" \
  -H "Authorization: Bearer rpl_your_api_key"

Response Example

{
  "data": [
    {
      "id": "uuid",
      "first_name": "John",
      "last_name": "Doe",
      "email": "lead@example.com",
      "title": "VP of Sales",
      "company_id": "uuid",
      "companies": {
        "name": "Acme Inc"
      }
    }
  ]
}