Contact Match API [Starter]
Match a person name to contact profiles. Returns ranked candidates with match scores.
Endpoint
Section titled “Endpoint”GET https://api.discolike.com/v1/contacts/matchParameters
Section titled “Parameters”| Parameter | Description |
|---|---|
| name | Person name to search for (required, minimum 2 characters). |
| company_name | Company name to narrow search (optional). |
| domain | Domain to filter by (optional). |
| person_country | Person’s country code to filter by (optional). |
| limit | Maximum results to return, range 1-20 (optional, defaults to 10). |
Example Request
Section titled “Example Request”curl "https://api.discolike.com/v1/contacts/match?name=John%20Smith&company_name=Acme%20Corp&limit=5" \ -H "x-discolike-key: API_KEY"Example Response
Section titled “Example Response”{ "query": { "name": "Jane Doe", "company_name": "Acme Corp", "domain": null }, "matches": [ { "persona_id": 12345678, "name": "Jane Doe", "title": "VP of Sales", "domain": "acmecorp.com", "company_name": "Acme Corporation", "match_score": 95.2 } ]}