Clearbit Enrichment API in 2026: Endpoints, Code Examples, and Life After the HubSpot Sunset

By Jimit Mehta
Clearbit Enrichment API in 2026 - endpoints, examples and HubSpot sunset migration - Abmatic AI blog cover

Direct answer: The standalone Clearbit Enrichment API - the person.clearbit.com, company.clearbit.com, and reveal.clearbit.com endpoints developers built against for a decade - is a sunset product in 2026. After HubSpot acquired Clearbit in November 2023, the platform was folded into Breeze Intelligence: Clearbit Connect shut down in December 2024, the free platform and weekly visitor report were discontinued on April 30, 2025, and the free Logo API sunset on December 1, 2025. New enrichment access is sold inside HubSpot (from ~$45/month for 100 credits, on top of a HubSpot subscription). Below: the classic endpoint patterns for anyone maintaining a legacy integration, and the migration path for each use case.

Key takeaways

  • HubSpot acquired Clearbit in November 2023 and has been migrating all functionality into Breeze Intelligence inside the HubSpot platform (HubSpot).
  • The sunset rolled out in stages: Clearbit Connect ended December 2024; the free Clearbit platform, Weekly Visitor Report, TAM calculator, and Slack integration ended April 30, 2025 (ListPlus timeline); the free Logo API sunset December 1, 2025 (HubSpot developer changelog).
  • Breeze Intelligence pricing starts around $45/month for 100 credits and requires a HubSpot subscription - enrichment became a CRM feature, not an API product (MarketBetter review).
  • Teams with Clearbit wired into non-HubSpot workflows face real migration work: the legacy API patterns below still describe many running integrations, but they are maintenance mode, not a platform to build on (BounceWatch).
  • Migration depends on the job: email-to-person enrichment, domain-to-firmographics, and IP-to-company (Reveal-style visitor identification) now have different best-in-class replacements - don't assume one vendor covers all three.

The classic Enrichment API: endpoints and usage examples

Three endpoint families did the work, and millions of lines of integration code still reference them. If you're maintaining one, this is the shape of what you're looking at. All calls authenticate with a secret key over HTTP Basic auth (key as username, blank password).

1. Person API - email to person profile

Look up a person by email address:

curl 'https://person.clearbit.com/v2/people/[email protected]' \
  -u sk_your_api_key:

A successful response returns a person object - name, title, role, seniority, location, and social handles:

{
  "id": "d54c54ad-40be-4305-8a34-0ab44710b90d",
  "name": { "fullName": "Alex Rivera", "givenName": "Alex" },
  "email": "[email protected]",
  "employment": {
    "domain": "example.com",
    "name": "Example Corp",
    "title": "VP Marketing",
    "role": "marketing",
    "seniority": "executive"
  },
  "location": "San Francisco, CA, US"
}

Two response behaviors trip up integrations to this day: a 202 Accepted means the lookup is queued (poll again or consume the webhook), and attributes can come back as booleans rather than values on metered plans - so defensive code should type-check fields before string operations rather than assuming "work_email" is a string.

2. Company API - domain to firmographics

curl 'https://company.clearbit.com/v2/companies/find?domain=example.com' \
  -u sk_your_api_key:

Returns the firmographic record sales and routing logic keyed on - sector, employee range, estimated revenue, tech tags, funding:

{
  "name": "Example Corp",
  "domain": "example.com",
  "category": { "sector": "Information Technology", "industry": "Software" },
  "metrics": { "employees": 480, "employeesRange": "251-1K", "estimatedAnnualRevenue": "$50M-$100M" },
  "tags": ["SaaS", "B2B"],
  "tech": ["salesforce", "marketo", "aws"]
}

3. Combined API and Reveal - one call, and IP-to-company

The Combined endpoint merged both lookups in a single round trip - the standard pattern for lead-qualification flows:

curl 'https://person.clearbit.com/v2/combined/[email protected]' \
  -u sk_your_api_key:

And Reveal mapped an IP address to a company, which is what powered "see which companies visit your website":

curl 'https://reveal.clearbit.com/v1/companies/find?ip=63.141.56.109' \
  -u sk_your_api_key:
{
  "ip": "63.141.56.109",
  "type": "company",
  "company": { "name": "Example Corp", "domain": "example.com" },
  "confidenceScore": "very_high"
}

If you're reading this to build rather than maintain: stop here. These endpoints describe a product line that is no longer sold standalone. What you build on in 2026 depends on which of these three jobs you need - covered below.


Skip the manual work

Abmatic AI runs targets, sequences, ads, meetings, and attribution autonomously. One platform replaces 9 tools.

See the demo โ†’

The sunset timeline, precisely

DateWhat changed
November 2023HubSpot announces acquisition of Clearbit
December 2024Clearbit Connect (Gmail sidebar) officially sunsets; users pointed to Breeze Intelligence (ListPlus)
April 30, 2025Free Clearbit platform, Weekly Visitor Report, TAM Calculator, and free Slack integration discontinued
December 1, 2025Free Logo API sunsets (HubSpot developer changelog)
2026Enrichment sold as Breeze Intelligence inside HubSpot: ~$45/mo for 100 credits, on top of a HubSpot subscription (MarketBetter pricing breakdown)

The strategic shift matters more than any single date: enrichment went from an API-first product any stack could call to a CRM-embedded feature with HubSpot as the front door. If your stack is HubSpot-native, that's arguably an upgrade. If it isn't, you're migrating (BounceWatch).


Migration paths by use case

Email-to-person enrichment (Person/Combined API users). If you're a HubSpot shop, Breeze Intelligence is the path of least resistance - credits meter usage and the data lands directly on CRM records. If you're not, evaluate API-first enrichment vendors on the two axes Clearbit was weakest in at the end: coverage outside North America, and honest match-rate reporting on your domains, not a marketing claim. Run a 500-record sample through any vendor before contracting.

Domain-to-firmographics (Company API users). The most commoditized of the three jobs - several vendors deliver comparable firmographic records over an API. The differentiators are refresh recency (stale employee counts poison routing rules) and whether technographics are included or an upsell. We maintain a comparison of Clearbit alternatives if you're shortlisting.

IP-to-company visitor identification (Reveal users). This is the use case where simply swapping APIs undersells what's now possible. Reveal told you a company was on your site; a modern ABM platform tells you that and acts on it - scoring the account, personalizing what that visitor sees, and syncing the signal to your CRM in the same motion. That's the job Abmatic AI does: it identifies anonymous website visitors at the account level, goes beyond IP matching with multi-signal deanonymization, personalizes the site per segment, and pipes everything into Salesforce, HubSpot, or Marketo - replacing the Reveal-plus-glue-code stack (and tools like 6sense, Demandbase, Mutiny, and Qualified) with one platform. If Reveal's sunset is what brought you here, book a demo and see the difference between an IP lookup and a working visitor-identification pipeline.


FAQ

Is the Clearbit API still available in 2026?

Not as a standalone product for new customers. The classic endpoints survive in legacy integrations, but Clearbit's functionality is sold as HubSpot Breeze Intelligence, and the free tiers (Connect, free platform, Logo API) were shut down in stages between December 2024 and December 2025.

What replaced the Clearbit Enrichment API?

HubSpot Breeze Intelligence, priced from roughly $45/month for 100 enrichment credits on top of a HubSpot subscription. For non-HubSpot stacks, the replacement is a migration to an API-first enrichment vendor (for person/company lookups) or an ABM platform (for Reveal-style visitor identification).

What was the difference between Clearbit Enrichment and Clearbit Reveal?

Enrichment took an identifier you already had (an email or domain) and returned a full profile. Reveal took an anonymous website visitor's IP address and identified the company behind it. They solved different problems: Enrichment improved known records; Reveal de-anonymized unknown traffic.

Do Clearbit's logo URLs still work?

The free Logo API (logo.clearbit.com/domain.com) was scheduled for sunset on December 1, 2025, per HubSpot's developer changelog - any product UI still hotlinking those URLs needs a replacement source.

Run ABM end-to-end on one platform.

Targets, sequences, ads, meeting routing, attribution. Abmatic AI runs all of it under one login. Skip the 9-tool stack.

Book a 30-min demo โ†’

Related posts