cURL
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>" } }
Get full contact detail
contacts:read
GET /v1/contacts/{id}
curl "https://api.mokaru.ai/v1/contacts/clx1234" \ -H "Authorization: Bearer mk_your_key"
Show child attributes
{ "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" } }
Was this page helpful?