AI Connect OSAI Connect OS Documentation
DocumentationAPI Reference
Contacts

GET List contacts

List contacts with full-text and tag filters.

Endpoint

GET https://api.aiconnectos.com/v1/contacts

Cursor-paginated, ordered by createdAt desc.

Query parameters

ParamTypeNotes
limitint1-100, default 50.
cursorstringFrom the previous response's nextCursor.
qstringFull-text match on firstName + lastName + email + phone.
tagstringRepeatable. Returns contacts that have ALL specified tags.
createdAfteriso8601
createdBeforeiso8601
companyIduuid

Response

{
  "data": [
    {
      "id": "ctc_…",
      "firstName": "Jane",
      "lastName": "Doe",
      "email": "jane@example.com",
      "phone": "+15558675309",
      "tags": ["lead"],
      "createdAt": "2026-05-25T20:14:00Z"
    }
  ],
  "nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2…"
}

Example

curl 'https://api.aiconnectos.com/v1/contacts?q=jane&tag=lead&limit=20' \
  -H "Authorization: Bearer $STRIDE_API_KEY"

On this page