curl --request GET \
--url https://api.ciarem.ai/v1/contacts/{contact_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ciarem.ai/v1/contacts/{contact_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ciarem.ai/v1/contacts/{contact_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ciarem.ai/v1/contacts/{contact_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ciarem.ai/v1/contacts/{contact_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ciarem.ai/v1/contacts/{contact_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ciarem.ai/v1/contacts/{contact_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>",
"country": "<string>",
"city": "<string>",
"instagram": "<string>",
"messenger": "<string>",
"whatsapp_username": "<string>",
"origin": "SOCIAL",
"sub_origin_id": "<string>",
"whatsapp_status": "verified",
"funnel_stage_id": "<string>",
"owner_id": "<string>",
"last_contacted_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"properties": {}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "<string>"
}Get a contact
curl --request GET \
--url https://api.ciarem.ai/v1/contacts/{contact_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ciarem.ai/v1/contacts/{contact_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ciarem.ai/v1/contacts/{contact_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ciarem.ai/v1/contacts/{contact_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ciarem.ai/v1/contacts/{contact_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ciarem.ai/v1/contacts/{contact_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ciarem.ai/v1/contacts/{contact_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>",
"country": "<string>",
"city": "<string>",
"instagram": "<string>",
"messenger": "<string>",
"whatsapp_username": "<string>",
"origin": "SOCIAL",
"sub_origin_id": "<string>",
"whatsapp_status": "verified",
"funnel_stage_id": "<string>",
"owner_id": "<string>",
"last_contacted_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"properties": {}
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "<string>"
}Authorizations
An org API key: Authorization: Bearer oak_….
Path Parameters
Response
Successful Response
Top-level acquisition category — how a contact entered the CRM.
Set once at first touch and never overwritten: a contact who joins the
waitlist (WEB) and later messages on WhatsApp keeps WEB; the channel
they messaged on lives on their ContactHandle, not here. The category is
a fixed, platform-owned vocabulary so analytics roll-ups, the AI prompt,
and inbound auto-assignment stay stable across orgs. The specific named
source within a category (e.g. "Waitlist", "SaaStr 2026", "WhatsApp") is
org-customizable — see the contact_sub_origins table. NULL for legacy
contacts whose origin predates this field. Replaces the old conversational-
only ContactSource (WHATSAPP/INSTAGRAM/MESSENGER), which collapsed
acquisition and channel into one field.
SOCIAL, ADS, WEB, EVENT, REFERRAL, OUTBOUND, IMPORT, MANUAL, API, OTHER WhatsApp presence status for a contact's phone number.
A new contact starts as UNVERIFIED when a phone is on file or
UNAVAILABLE when none is. The AI agent flips UNVERIFIED →
VERIFIED on a successful send, or → UNAVAILABLE on a 404 /
not-on-whatsapp response. Direct patching is not exposed; the
write path is purely service-layer derivation.
verified, unverified, unavailable Show child attributes
Show child attributes