Skip to main content
GET
/
contacts
/
{contact_id}
Get Contact
curl --request GET \
  --url https://api.kejue.co/api/v1/contacts/{contact_id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "phone": "<string>",
  "whatsapp_number": "<string>",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "company": "<string>",
  "job_title": "<string>",
  "country": "<string>",
  "timezone": "<string>",
  "language": "<string>",
  "tags": [
    "<string>"
  ],
  "metadata": {},
  "source": "<string>",
  "is_active": true,
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

X-API-Key
string
header
required

Workspace API key (e.g. kej_live_...)

Path Parameters

contact_id
string
required

Response

Successful Response

A contact (public-safe response).

id
string
required
phone
string | null
whatsapp_number
string | null
email
string | null
first_name
string | null
last_name
string | null
company
string | null
job_title
string | null
country
string | null
timezone
string | null
language
string | null
tags
string[]
metadata
Metadata · object
source
string | null
is_active
boolean
default:true
created_at
string | null
updated_at
string | null