Skip to main content
GET
/
v1
/
contacts
/
{id}
Get Contact
curl --request GET \
  --url https://api.mokaru.ai/v1/contacts/{id}
{
  "data": {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "jobTitle": "<string>",
    "company": "<string>",
    "relationship": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "linkedIn": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
}

Overview

The Get Contact endpoint returns the full details of a specific contact. Common use cases:
  • Interview prep - pull up the interviewer’s details before a call.
  • Email drafting - use contact info to personalize outreach emails.
  • Application context - check who you know at a company before applying.
Scope required: contacts:read | Rate limit: 30 requests/min

Request

GET /v1/contacts/{id}

Example

curl "https://api.mokaru.ai/v1/contacts/clx1234" \
  -H "Authorization: Bearer mk_your_key"

Response

data
object
Contact detail
{
  "data": {
    "id": "clx1234...",
    "firstName": "Sarah",
    "lastName": "Jones",
    "jobTitle": "Engineering Manager",
    "company": "Acme Corp",
    "relationship": "HIRING_MANAGER",
    "email": "sarah@acme.com",
    "phone": "+1 555-0200",
    "linkedIn": "https://linkedin.com/in/sarahjones",
    "createdAt": "2026-03-10T10:00:00.000Z",
    "updatedAt": "2026-03-15T14:30:00.000Z"
  }
}