> ## Documentation Index
> Fetch the complete documentation index at: https://apidoc.cufinder.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Person Name Normalizer API

> The Person Name Normalizer API cleans a person's name into a consistent, standardized form. Strip stray titles, fix casing, and collapse messy whitespace so your contact records match and dedupe reliably.

<div id="cuf-use-cases" className="cuf-use-cases">
  ## Common Use Cases

  Inconsistent person names quietly break matching, deduplication, and personalization.

  * **Data Hygiene:** Standardizing contact names before they enter your CRM.
  * **Deduplication:** Matching records that spell the same person differently.
  * **Personalization:** Keeping salutations clean in outreach at scale.
  * **Data Integration:** Reconciling names across systems and imports.
</div>

<Badge color="blue" size="lg" icon="star" className="mt-3">
  Credit usage is 1 credit per request.
</Badge>

## Attributes

<ParamField body="value" type="string" required>
  The person name to normalize.
</ParamField>

## Response

<CodeGroup>
  ```json Response theme={null}
  {
      "success": true,
      "data": {
          "normalized": "DR. Morteza  Heydari Phd"
      },
      "meta": {
          "confidence": 97,
          "query": {
              "value": "DR. Morteza  Heydari phd"
          },
          "credits": {
              "charged": 1,
              "remaining": 9862
          }
      }
  }
  ```
</CodeGroup>

## Related APIs

<CardGroup cols={2}>
  <Card title="Company Normalizer" icon="building" href="/apis/company-name-normalizer">
    Clean and standardize company names.
  </Card>

  <Card title="Phone Number Normalizer" icon="phone-check" href="/apis/phone-number-normalizer">
    Standardize phone numbers to a clean format.
  </Card>

  <Card title="Address Normalizer" icon="map-pin" href="/apis/address-normalizer">
    Standardize and validate postal addresses.
  </Card>

  <Card title="URL Normalizer" icon="link" href="/apis/url-normalizer">
    Normalize URLs to a canonical form.
  </Card>
</CardGroup>
