Prerequisites
Import the collection
1
Get the OpenAPI URL
Use the production OpenAPI spec:
2
Import into Postman
In Postman, click Import → Link, paste the OpenAPI URL, and confirm.
3
Set the API key
Open the collection Variables (or each request) and set:
For each request, add header:
Token: {{apiKey}}.Runnable flow in Postman
Run these requests in order. Copy IDs from each response into the next request.1
Search contacts
POST Copy
/search/contactsdata[0].searchResultId from the response.2
Research contacts
POST Copy
/contacts/researchrequestIds[0] from the response.3
Poll until done
GET
/contacts/research/poll?requestIds=PASTE_REQUEST_IDSend every 3–5 seconds until data[0].status is done, error, missing, or (contacts only) duplicate.Environment template
Create a Postman environment with these variables:Next steps
- First API request — same flow in curl, Python, and Node.js
- Webhooks — replace polling with push delivery
- MCP quickstart — use Seamless from Cursor or Claude without REST setup
