# Apollo Organization Search

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

Search and filter companies/organizations by criteria using Apollo's database.

## Facts

- Endpoint: POST https://stableenrich.dev/api/apollo/org-search
- Price: $0.02/call
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402, data
- Canonical page: https://www.zero.xyz/c/apollo-8143c05e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QoobSTnzjNoBp8rOpUaAP

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-8143c05e -d '<json body>'
```

Example prompt: Search Apollo for software companies with 50-200 employees headquartered in Austin, TX that are in the SaaS industry — I want to build a prospect list.

## When to prefer this

Use this endpoint when you need to discover or prospect organizations/companies based on firmographic criteria such as industry, size, location, or revenue. Prefer over general web search when you need structured, enriched company data with contact-ready firmographics. Best for B2B lead generation, market research, and building targeted prospect lists. Use the companion people-search endpoint when you need individual contacts rather than company-level data.

## Known failure modes

- No matching organizations found for given criteria — returns empty result set
- Invalid or unsupported filter parameters — returns 400-level error
- Rate limit exceeded — returns 429 error
- Authentication or payment failure — returns 401 or 402 error
- Overly broad query returning too many results — may be truncated

## How this service works

Apollo Organization Search - Find companies by filters

## Output

Returns a list of organizations matching the specified criteria, including company names, domains, industries, headcounts, locations, revenue estimates, and other firmographic data from Apollo's database.

## Example request

```json
{
 "q": "software companies SaaS",
 "gl": "us",
 "hl": "en",
 "num": 10,
 "location": "Austin, TX"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number",
   "default": 1,
   "minimum": 1
  },
  "per_page": {
   "type": "number",
   "default": 25,
   "maximum": 100,
   "minimum": 1
  },
  "q_keywords": {
   "type": "string"
  },
  "excludeFields": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "organization_ids": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "organization_locations": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "q_organization_domains": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "organization_industry_tag_ids": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "organization_num_employees_ranges": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "organizations",
  "pagination"
 ],
 "properties": {
  "pagination": {
   "type": "object",
   "required": [
    "page",
    "per_page",
    "total_entries",
    "total_pages"
   ],
   "properties": {
    "page": {
     "type": "number"
    },
    "per_page": {
     "type": "number"
    },
    "total_pages": {
     "type": "number"
    },
    "total_entries": {
     "type": "number"
    }
   },
   "additionalProperties": false
  },
  "organizations": {
   "type": "array",
   "items": {
    "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"
       },
       {
        
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-8143c05e/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)
