GET
/
api
/
v1
/
contacts
/
{id}
/
detail
curl https://api.ravan.ai/api/v1/contacts/019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b/detail \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true, "message": "Contact detail fetched successfully",
  "data": {
    "id": "019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b", "first_name": "John", "last_name": "Smith",
    "email": "john@example.com", "phone": "+14155550100", "company": "Acme Corp",
    "total_calls": 12, "total_minutes": 45.5, "last_call_at": "2026-03-22T10:30:00Z",
    "campaigns": ["Summer Outreach", "Q1 Follow-up"], "created_at": "2026-03-01T09:00:00Z"
  }
}

Authorizations

X-Api-Key
string
required
Your Agni API key.

Path Parameters

id
string
required
UUID of the contact.

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object
Full contact profile with stats and campaign associations.
curl https://api.ravan.ai/api/v1/contacts/019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b/detail \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true, "message": "Contact detail fetched successfully",
  "data": {
    "id": "019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b", "first_name": "John", "last_name": "Smith",
    "email": "john@example.com", "phone": "+14155550100", "company": "Acme Corp",
    "total_calls": 12, "total_minutes": 45.5, "last_call_at": "2026-03-22T10:30:00Z",
    "campaigns": ["Summer Outreach", "Q1 Follow-up"], "created_at": "2026-03-01T09:00:00Z"
  }
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Contact ID

Response

Successful response