Skip to main content
GET
/
api
/
contacts
List contacts
curl --request GET \
  --url https://api.morphic.io/api/contacts/ \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "first_name": "<string>",
      "last_name": "<string>",
      "full_name": "<string>",
      "emails": "<string>",
      "phones": "<string>",
      "mobile_phone": "<string>",
      "job_title": "<string>",
      "department": "<string>",
      "linkedin_url": "<string>",
      "twitter_url": "<string>",
      "twitter_handle": "<string>",
      "facebook_url": "<string>",
      "instagram_url": "<string>",
      "description": "<string>",
      "address": "<string>",
      "location": {},
      "metadata": {},
      "enrichment": {},
      "enrichment_provider": "<string>",
      "enrichment_last_updated": "2023-11-07T05:31:56Z",
      "enrichment_status": "<string>",
      "last_interaction": "2023-11-07T05:31:56Z",
      "date_of_birth": "2023-12-25",
      "notes": "<string>",
      "categories": [
        "<string>"
      ],
      "company_id": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "custom_fields": {},
      "associated_deal_ids": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>"
        }
      ],
      "name": "<string>",
      "is_favorite": false
    }
  ],
  "total": 123,
  "page": 123,
  "page_size": 123,
  "pages": 123
}

Authorizations

X-API-Key
string
header
required

API key (sk_xxx) from Developer Settings. No X-Account-ID needed.

Headers

x-account-id
string | null

Query Parameters

categories
string | null

Comma-separated list of category IDs

custom_fields
string | null

JSON string of custom field filters

basic_filters
string | null

JSON string of basic filters

sort_by
string | null

Sort by field:direction, e.g., 'first_name:asc' or 'created_at:desc'

page
integer
default:1
Required range: x >= 1
page_size
integer
default:100
Required range: 1 <= x <= 1000
is_deleted
boolean | null
default:false
company_id
string<uuid> | null
enrichment_status
string | null
email
string | null
search
string | null

Response

Successful Response

items
Contact · object[]
required
total
integer
required
page
integer
required
page_size
integer
required
pages
integer
required