> ## 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.

# URL Normalizer API

> The URL Normalizer API cleans a URL into a canonical form, dropping paths, parameters, and scheme noise so the same site always resolves to the same value. Free to call, so you can run it across entire datasets.

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

  The same website written five different ways is five records your systems treat as different companies.

  * **Data Hygiene:** Canonicalizing website fields before storage.
  * **Deduplication:** Matching records that store the same site with different URLs.
  * **Enrichment Prep:** Producing clean domains to feed into enrichment endpoints.
  * **Analytics:** Grouping traffic and records by canonical site.
</div>

<Badge color="blue" size="lg" icon="star" className="mt-3">
  Free. This endpoint does not charge credits.
</Badge>

## Attributes

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

## Response

<CodeGroup>
  ```json Response theme={null}
  {
      "success": true,
      "data": {
          "normalized": "WWW.CuFinder.io"
      },
      "meta": {
          "confidence": 99,
          "query": {
              "value": "WWW.CuFinder.io/path/?utm=x"
          },
          "credits": {
              "charged": 0,
              "remaining": 9862
          }
      }
  }
  ```
</CodeGroup>

## Related APIs

<CardGroup cols={2}>
  <Card title="Company Name to Domain" icon="world" href="/apis/company-name-to-domain">
    Resolve a company name to its domain.
  </Card>

  <Card title="Domain to Company Name" icon="building" href="/apis/domain-to-company-name">
    Get the company name behind a domain.
  </Card>

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

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