# Apollo Organization Lookup by ID

> Apollo Organization Lookup 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).

Retrieves complete organization profile and details from Apollo using a specific Apollo organization ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/apollo/api/v1/organizations/57c4ace7a6da9867ee5599e7
- 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-lookup-by-id-aa752b9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U30bCu5RuKsISk91mYuez

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-lookup-by-id-aa752b9e
```

Example prompt: Look up the full company profile on Apollo for organization ID 57c4ace7a6da9867ee5599e7 — I need their industry, size, and contact details.

## When to prefer this

Use this endpoint when you already have an Apollo organization ID and need the full company profile in one call. It's the most direct way to retrieve complete Apollo firmographic data for a known organization. Prefer this over search-based lookups when you have the exact ID, as it's faster and more precise. Best for CRM enrichment, sales research, and account intelligence workflows where Apollo IDs are already stored or previously retrieved.

## Known failure modes

- Invalid or non-existent Apollo organization ID returns 404 or empty result
- Malformed organization ID format causes request error
- Apollo data may be stale or incomplete for lesser-known companies
- Rate limiting or payment failure if USDC balance is insufficient
- Network timeout if Apollo backend is slow to respond

## How this service works

Get complete organization info by Apollo organization ID.

## Output

Returns a complete organization record from Apollo including company name, industry, employee count, estimated revenue, headquarters location, website, LinkedIn URL, phone numbers, technologies used, and other firmographic data fields available in Apollo's database for the given 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-lookup-by-id-aa752b9e/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)
