Skip to main content
GET
/
api
/
contacts
/
{id}
Get Contact
curl --request GET \
  --url https://api.example.com/api/contacts/{id}
{
  "data": {
    "id": "<string>",
    "email": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "company": "<string>",
    "title": "<string>",
    "linkedin_url": "<string>",
    "phone": "<string>",
    "metadata": {},
    "reply_count": 123,
    "replies": [
      {}
    ],
    "last_reply_at": "<string>",
    "created_at": "<string>"
  }
}
Fetch details of a single contact including their reply history.

Path Parameters

id
string
required
The unique identifier (UUID) of the contact

Response

data
object
The contact object

Examples

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

Response Example

{
  "data": {
    "id": "contact-abc123",
    "email": "[email protected]",
    "first_name": "John",
    "last_name": "Smith",
    "company": "Example Inc",
    "title": "VP of Sales",
    "linkedin_url": "https://linkedin.com/in/johnsmith",
    "phone": "+1-555-123-4567",
    "metadata": {
      "industry": "Technology",
      "company_size": "100-500"
    },
    "reply_count": 3,
    "replies": [
      {
        "id": "reply-xyz789",
        "subject": "Re: Partnership opportunity",
        "status": "sent",
        "category": "Meeting Request",
        "received_at": "2024-01-15T14:30:00Z"
      },
      {
        "id": "reply-xyz456",
        "subject": "Re: Quick question",
        "status": "sent",
        "category": "Interested",
        "received_at": "2024-01-12T10:15:00Z"
      }
    ],
    "last_reply_at": "2024-01-15T14:30:00Z",
    "created_at": "2024-01-10T09:00:00Z"
  }
}

Errors

404 Not Found
{
  "error": "Contact not found"
}
The specified contact ID doesn’t exist in your workspace.