> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Contact

> Get full contact detail

## 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.

<Note>
  **Scope required:** `contacts:read` | **Rate limit:** 30 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/contacts/{id}
```

### Example

```bash theme={null}
curl "https://api.mokaru.ai/v1/contacts/clx1234" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="data" type="object">
  Contact detail

  <Expandable>
    <ResponseField name="id" type="string">Unique contact ID</ResponseField>
    <ResponseField name="firstName" type="string">First name</ResponseField>
    <ResponseField name="lastName" type="string">Last name</ResponseField>
    <ResponseField name="jobTitle" type="string">Contact's job title</ResponseField>
    <ResponseField name="company" type="string">Company name</ResponseField>
    <ResponseField name="relationship" type="string">Relationship type</ResponseField>
    <ResponseField name="email" type="string">Email address</ResponseField>
    <ResponseField name="phone" type="string">Phone number</ResponseField>
    <ResponseField name="linkedIn" type="string">LinkedIn profile URL</ResponseField>
    <ResponseField name="createdAt" type="string">ISO 8601 creation date</ResponseField>
    <ResponseField name="updatedAt" type="string">ISO 8601 last update date</ResponseField>
  </Expandable>
</ResponseField>

```json theme={null}
{
  "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"
  }
}
```
