FullEnrich

FullEnrich is a B2B contact enrichment platform that finds verified business emails and mobile phone numbers by running a waterfall across 15+ data vendors. Its API accepts contacts by name plus company (domain or company name) or LinkedIn URL, submits them for bulk enrichment, and returns the most probable work email, personal email, and mobile phone, billing credits only when data is found.

4 APIs 0 Features
B2B DataContact EnrichmentEmail FinderPhone FinderWaterfall EnrichmentSales Intelligence

APIs

FullEnrich Contact Enrichment API

Submit up to 100 contacts per request for bulk waterfall enrichment by first name, last name, and company domain or company name (LinkedIn URL optional), then poll or receive a ...

FullEnrich Enrichment Results API

Retrieve the results of a bulk enrichment by its enrichment_id, returning the run status, credits consumed, and per-contact enriched data including emails with deliverability st...

FullEnrich Reverse Email Lookup API

Resolve a person and company from an email address in bulk, then retrieve the identified profile and contact information by the reverse lookup's enrichment_id.

FullEnrich Account Credits API

Check the current credit balance available in your workspace before submitting enrichment jobs, so clients can gate spend against remaining credits.

Collections

Pricing Plans

Fullenrich Plans Pricing

5 plans

PLANS

Rate Limits

Fullenrich Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
TrustCenter
TrustCenter
🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: FullEnrich API
  version: '2.0'
request:
  auth:
    type: bearer
    token: '{{apiKey}}'
items:
- info:
    name: Contact Enrichment
    type: folder
  items:
  - info:
      name: Start Bulk Enrichment
      type: http
    http:
      method: POST
      url: https://app.fullenrich.com/api/v2/contact/enrich/bulk
      body:
        type: json
        data: "{\n  \"name\": \"My enrichment batch\",\n  \"webhook_url\": \"https://example.com/webhooks/fullenrich\",\n\
          \  \"data\": [\n    {\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"domain\": \"acme.com\"\
          ,\n      \"company_name\": \"Acme Inc\",\n      \"linkedin_url\": \"https://www.linkedin.com/in/johndoe\",\n   \
          \   \"enrich_fields\": [\"contact.work_emails\", \"contact.phones\"],\n      \"custom\": { \"crm_id\": \"12345\"\
          \ }\n    }\n  ]\n}"
    docs: Submit up to 100 contacts for waterfall enrichment. Returns an enrichment_id.
  - info:
      name: Get Bulk Enrichment Results
      type: http
    http:
      method: GET
      url: https://app.fullenrich.com/api/v2/contact/enrich/bulk/{{enrichmentId}}
    docs: Retrieve the results of a bulk enrichment by its enrichment_id.
- info:
    name: Reverse Email Lookup
    type: folder
  items:
  - info:
      name: Start Reverse Email Lookup
      type: http
    http:
      method: POST
      url: https://app.fullenrich.com/api/v2/contact/reverse/email/bulk
      body:
        type: json
        data: "{\n  \"name\": \"Reverse lookup batch\",\n  \"data\": [\n    { \"email\": \"john.doe@acme.com\" }\n  ]\n}"
    docs: Resolve a person and company from one or more email addresses.
  - info:
      name: Get Reverse Email Lookup Results
      type: http
    http:
      method: GET
      url: https://app.fullenrich.com/api/v2/contact/reverse/email/bulk?enrichment_id={{enrichmentId}}
    docs: Retrieve the result of a reverse email lookup by its enrichment_id.
- info:
    name: Account
    type: folder
  items:
  - info:
      name: Get Workspace Credits
      type: http
    http:
      method: GET
      url: https://app.fullenrich.com/api/v2/account/credits
    docs: Returns the current credit balance available in your workspace.
  - info:
      name: Verify API Key
      type: http
    http:
      method: GET
      url: https://app.fullenrich.com/api/v2/account/keys/verify
    docs: Validates that the supplied API key is active.