Search the contact index programmatically by name, title, seniority or domain — every record carrying the same source URL you see in-app. No scraping, no maintenance.
Building your own contact data pipeline means crawlers to babysit, parsers that break every time a site changes, and no way to prove where a field came from. It's a maintenance tax that grows with every source you add.
Every result carries the contact and the public page it came from — the same provenance you see in the app.
# Search contacts by title and seniority
curl "https://api.datasigma.io/v1/contacts/search?title=Head%20of%20Sales&seniority=director" \
-H "Authorization: Bearer $API_KEY"
# → 200 OK
{
"results": [
{
"name": "Jordan Lee",
"title": "Head of Sales",
"company": "Acme Inc.",
"source_url": "https://acme.com/team"
}
]
}
Query the contact index by name, title, seniority and domain — the same filters you use in the app.
Pass a company domain to pull the people we hold at that company — ideal for enriching accounts you already work.
Every record comes back in the same schema you see in the app — easy to map straight into your own models.
Each response includes the public page the data came from — provenance your compliance team can rely on.
The API returns the exact records you see in the dashboard — no separate, lower-quality feed to reconcile.
Pipe source-cited records straight into your data warehouse, CRM sync or internal tools — no scraping to maintain.
Start free with 50 credits — no credit card required. Explore the endpoints and pull your first source-cited records.
Read the API docs