# Apollo Organization Enrichment by Domain

> Apollo Organization Enrichment by Domain is a paid API for AI agents from stableenrich.dev, $0.0495/call, status unknown (last checked 2026-09-14).

Enriches an organization's profile with detailed company data by providing a domain name, using Apollo.io as the underlying data source.

## Facts

- Endpoint: POST https://stableenrich.dev/api/apollo/org-enrich
- Price: $0.0495/call
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402, data
- Canonical page: https://www.zero.xyz/c/apollo-179debbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e90qYBCGrgDEwEjYVe1G9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apollo-179debbd -d '<json body>'
```

Example prompt: Can you pull the full Apollo company profile for stripe.com — I need their industry, employee count, funding stage, and headquarters?

## When to prefer this

Use this endpoint when you have a company domain and need structured firmographic data (employee count, industry, funding, HQ) for sales prospecting, lead enrichment, or CRM population. Prefer this over people-search endpoints when your primary input is a company domain rather than a person's name or email. Choose this over generic web scraping when you need structured, normalized company attributes from Apollo's database.

## Known failure modes

- Domain not found in Apollo database — returns empty or null organization record
- Invalid or malformed domain input — returns 400 or validation error
- Domain resolves to a personal site or non-company entity — low-quality or missing data
- Payment failure via x402 protocol — request rejected before processing
- Rate limit exceeded — 429 error from upstream Apollo API

## How this service works

Apollo: enrich a single company by domain

## Output

Returns an enriched organization profile including company name, domain, industry, employee count, estimated revenue, funding details, headquarters address, social media links, description, and technology stack data sourced from Apollo.io.

## Example request

```json
{
 "domain": "stripe.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Company domain, e.g., 'apollo.io'"
  },
  "excludeFields": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "organization",
  "status"
 ],
 "properties": {
  "status": {
   "type": "string"
  },
  "organization": {
   "anyOf": [
    {
     "type": "object",
     "properties": {
      "id": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "city": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "name": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "state": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "domain": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "country": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "industry": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "keywords": {
       "anyOf": [
        {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        {
         "type": "null"
        }
       ]
      },
      "logo_url": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "postal_code": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "raw_address": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "twitter_url": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "website_url": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "facebook_url": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ]
      },
      "founded_year": {
       "anyOf": [
        {
         "type": "number"
        },
        {
         "type": "null"
        }
       ]
      },
      "linkedin_url": {
    
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-179debbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
