---
title: "Match contact by name"
method: GET
path: "/contacts/match"
---

# Match contact by name

`GET /contacts/match`

Match a person's name to contacts in our database, optionally filtered by company or domain.

## Query parameters

- `name` string, required — Person name to search for.
- `company_name` string, nullable — Company name to narrow the search.
- `domain` string, nullable — Domain to filter results.
- `person_country` string, nullable — Person's country code (ISO-3166-1 alpha-2).
- `limit` integer — Maximum results to return (1-20).

## Response `200`

Successful Response

- ContactMatchResponse — Response for contact match endpoint.
  - `query` ContactMatchQuery, required — Query parameters echoed in contact match response. ``extra="allow"`` so the bulk-match CSV path can round-trip pass-through row data (e.g. ``input:<column>`` keys) through to the response.
    - `name` string, nullable — The name that was searched.
    - `email` string, nullable — Email filter if provided.
    - `company_name` string, nullable — Company name filter if provided.
    - `domain` string, nullable — Domain filter if provided.
    - `person_country` string, nullable — Person country filter if provided.
  - `matches` ContactMatchResult[], required — List of matching contacts.
    - `persona_id` integer, required — Unique identifier for the matched contact.
    - `name` string, nullable — Full name of the contact.
    - `title` string, nullable — Job title.
    - `domain` string, required — Company domain.
    - `company_name` string, nullable — Company name.
    - `match_score` number, required — Match confidence score (0-100).

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/discolike/apis/discolike-api.md) · [All operations](https://skmtc.net/discolike/apis/discolike-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/discolike/discolike-api/versions/3248fc62024c/schema)
