Get contact
curl --request GET \
--url http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Contact Lists
Get contact
Retrieve details for a single contact in a contact list
GET
/
contact-lists
/
{listId}
/
contacts
/
{id}
Get contact
curl --request GET \
--url http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/contact-lists/{listId}/contacts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Retrieves a single contact record by its UUID.
Path parameters
string
required
The unique UUID of the contact list.
string
required
The unique UUID of the contact.
curl -X GET https://api.agentic-os.com/api/v1/contact-lists/33333333-3333-3333-3333-333333333333/contacts/99999999-8888-7777-6666-555555555555 \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
import requests
response = requests.get(
"https://api.agentic-os.com/api/v1/contact-lists/33333333-3333-3333-3333-333333333333/contacts/99999999-8888-7777-6666-555555555555",
headers={"Authorization": f"Bearer {API_KEY}"},
)
print(response.json())
const response = await fetch(
"https://api.agentic-os.com/api/v1/contact-lists/33333333-3333-3333-3333-333333333333/contacts/99999999-8888-7777-6666-555555555555",
{
method: "GET",
headers: { Authorization: `Bearer ${API_KEY}` },
},
);
const data = await response.json();
console.log(data);
Response
{
"id": "99999999-8888-7777-6666-555555555555",
"tenantId": "990e8400-e29b-41d4-a716-446655440000",
"contactListId": "33333333-3333-3333-3333-333333333333",
"phoneNumber": "+919876543210",
"name": "Asha Patel",
"email": "asha.patel@example.com",
"metadata": {
"plan": "Enterprise"
},
"createdAt": "2026-06-01T09:10:00.000Z",
"updatedAt": "2026-06-01T09:10:00.000Z"
}
⌘I

