Go back
Attio

Attio

v1 · 22 endpoints

Attio (22)

API Explorer

— credits
ColdIQ
APIs→Attio
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/attio/people/query0 cr

Credits: free.

Authentication

No API key — create one in the dashboard

Body

JSON Editor

Filter expression. See Attio filter guide.

ITEM 1

Max results (default 500).

Results to skip (default 0).

Your Attio access token. Optional if you have connected your Attio account in the dashboard.

import requests

url = "https://api.coldiq.com/v1/attio/people/query"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())