# Apollo Organization Enrichment by ID

> Apollo Organization Enrichment by ID is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches complete organization profile data from Apollo by a given Apollo organization ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/apollo/api/v1/organizations/enrich
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-organization-enrichment-by-id-961765ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wfXFo13mmqRDkzglOribV

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-organization-enrichment-by-id-961765ae
```

Example prompt: Can you pull the full organization details from Apollo for the company with ID 5d9c33e1a6da98bc83b6e6b5?

## When to prefer this

Use this endpoint when you already have an Apollo organization ID and need to retrieve the full structured company profile. It is more direct and precise than keyword-based company search because it fetches by unique identifier, avoiding ambiguity across similarly named companies. Prefer this over web scraping or general search when you need structured B2B data fields like employee count, funding, and technologies.

## Known failure modes

- Invalid or malformed Apollo organization ID returns an error or empty result
- Organization ID not found in Apollo database returns null or 404-equivalent
- Rate limiting or payment failure results in 402 or 429 response
- Missing required 'id' query parameter causes a validation error

## How this service works

Get complete organization info by Apollo organization ID.

## Output

Returns a complete organization record from Apollo including company name, website, industry, employee count, headquarters location, funding rounds, social media profiles, technologies used, and other enrichment data associated with the given Apollo organization ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "Apollo organization ID (path param)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-organization-enrichment-by-id-961765ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
