Contacts
GET Get contact
Retrieve a single contact by id.
Endpoint
GET https://api.strideops.ai/v1/contacts/{id}Returns the contact's full record including custom fields, tags, and computed fields like lastInteractionAt.
Path parameters
| Param | Type | Notes |
|---|---|---|
id | uuid | Contact id. |
Response
{
"id": "ctc_8f3e…",
"externalId": "crm-acme-1042",
"firstName": "Jane",
"lastName": "Doe",
"email": "jane@example.com",
"phone": "+15558675309",
"companyId": "co_…",
"tags": ["lead", "qualified"],
"customFields": {
"f1a2…": "purchased-q4-2025"
},
"source": "meta-lead-ad",
"lastInteractionAt": "2026-05-25T20:32:11Z",
"createdAt": "2026-04-12T14:10:00Z",
"updatedAt": "2026-05-25T20:32:11Z"
}Example
curl https://api.strideops.ai/v1/contacts/ctc_8f3e… \
-H "Authorization: Bearer $STRIDE_API_KEY"