List contacts
Retrieve contacts from your Applied workspace. Use filters to narrow results by ID, email, phone number, platform, archive state, or parent relationship.
/v2026-04/contacts/Usage
Start from this cURL example and add filters as needed.
curl -X GET https://core.appliedlabs.ai/v2026-04/contacts/ \
-H "Authorization: Bearer <api-token>" \
-H "X-Shop-Id: 66e4c4d2-34e8-4f85-8f51-84b6ed7b5f10"Authorizations
Send your Applied API key as Authorization: Bearer AL.... Create the key in the Applied dashboard and keep it on your server.
Query parameters
cursorstringUse the cursor from a previous next or previous link to move through the results.
emailstringOnly return contacts with this email address.
idstring · uuidOnly return this contact.
id__inarrayOnly return contacts with these IDs. Separate values with commas.
is_archivedbooleanSet to true for archived contacts or false for active contacts.
limitintegerHow many results to return in this page.
parent_contact_idstring · uuidOnly return child contacts for this parent contact.
parent_contact_id__inarrayOnly return child contacts for these parent contacts. Separate values with commas.
parent_contact_id__isnullbooleanSet to true for top-level contacts only, or false for child contacts only.
phonestringOnly return contacts with this phone number (any common format).
remote_platformstringOnly return contacts from this external platform.
remote_platform__inarrayOnly return contacts from these external platforms. Separate values with commas.
Header parameters
X-Shop-Idstring · uuidrequiredThe shop whose data you want to read.
Response
A page of contacts.
nextstring · uri | nullpreviousstring · uri | nullresultsarrayrequiredresults.companystringresults.created_atstring · date-timerequiredresults.display_namestringresults.emailstring | nullrequiredContact email address (most recently updated, if several).
results.idstring · uuidrequiredresults.is_archivedbooleanresults.is_testbooleanresults.last_activity_atstring · date-time | nullresults.namestringresults.parent_contact_idstring · uuid | nullrequiredresults.phonestring | nullrequiredContact phone number in E.164 format (most recently updated, if several).
results.remote_idstring | nullrequiredYour system's ID for the contact, if one is set.
results.remote_platformstring | nullrequiredThe external platform this contact was originally imported from, if any.
results.rolestringresults.updated_atstring · date-timerequired{
"next": "https://core.appliedlabs.ai/v2026-04/contacts/?cursor=next-cursor-token",
"previous": "https://core.appliedlabs.ai/v2026-04/contacts/?cursor=previous-cursor-token",
"results": [
{
"company": "Barber Group",
"created_at": "2026-04-07T14:30:00Z",
"display_name": "Nancy Clarke",
"email": "tonywalker@example.org",
"id": "11111111-1111-4111-8111-111111111111",
"is_archived": false,
"is_test": false,
"last_activity_at": "2026-04-07T15:05:00Z",
"name": "Nancy Clarke",
"parent_contact_id": "22222222-2222-4222-8222-222222222222",
"phone": "+14155559664",
"remote_id": "cust_ip66yv88",
"remote_platform": "zendesk",
"role": "Printmaker",
"updated_at": "2026-04-07T15:12:00Z"
}
]
}