# FullEnrich Company Search

> FullEnrich Company Search is a paid API for AI agents from stable-enrich-git-shafu-stableenrich-compa-a1ba99-merit-systems.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Search for companies by name, industry, headcount, or headquarters location to retrieve enriched firmographic data

## Facts

- Endpoint: POST https://stable-enrich-git-shafu-stableenrich-compa-a1ba99-merit-systems.vercel.app/api/fullenrich/company-search
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fullenrich-company-search-183a3fbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Of8BELOPq1zOk7jVUojS3

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 fullenrich-company-search-183a3fbd -d '<json body>'
```

Example prompt: Search FullEnrich for software development companies headquartered in San Francisco with between 50 and 500 employees — give me the first 10 results with their legal names and domains.

## When to prefer this

Use this endpoint when you need to search or discover companies by firmographic attributes such as industry, headcount, or HQ location, especially when building lead lists, doing market research, or resolving brand names to legal entity names. Prefer this over contact enrichment endpoints when the goal is company-level discovery rather than individual person data.

## Known failure modes

- 400 error if only limit/page is provided without names, industries, or headquarters_locations
- Incorrect results if brand names (e.g. Cursor) are used instead of legal names (e.g. Anysphere)
- Wrong industry classification if SaaS is used instead of Software Development, or AI is used instead of Research Services
- Empty results if exact_match is used on a domain mismatch (e.g. searching ElevenLabs by brand instead of domain)
- Pagination may not work with page parameter on cached results — must use search_after cursor

## How this service works

FullEnrich Company Search — by name, industry, headcount, HQ. Requires names, industries, or headquarters_locations; limit/page alone → 400. Paginate via search_after (page ignored on cache). Legal names not brands (Anysphere≠Cursor). Software Development not SaaS; Research Services not AI. exact_match string-only — check domain for ElevenLabs, Runway.

## Output

Returns a list of company records matching the search criteria, each containing the legal company name, industry classification, employee headcount range, headquarters location, and company domain. Also includes a search_after cursor for paginating through large result sets.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "limit",
      "page"
     ],
     "properties": {
      "page": {
       "type": "integer",
       "default": 0,
       "maximum": 9007199254740991,
       "minimum": 0,
       "description": "Legacy page index — may be silently ignored on cached responses (page 2 can equal page 0). Use search_after instead."
      },
      "limit": {
       "type": "integer",
       "default": 3,
       "maximum": 100,
       "minimum": 1,
       "description": "Max companies to return. Default 3; raise when you need more (flat $0.05/query regardless of limit)."
      },
      "names": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "value"
        ],
        "properties": {
         "value": {
          "type": "string"
         },
         "exact_match": {
          "type": "boolean",
          "description": "String match only — does not resolve brand intent. For ambiguous names (ElevenLabs, Runway), verify domain/headcount in results; rank #1 may be wrong entity."
         }
        },
        "additionalProperties": false
       },
       "description": "Search by legal entity name, not product/brand name (e.g. Anysphere, not Cursor). Provide at least one of names, industries, or headquarters_locations — limit/page alone returns 400."
      },
      "headcounts": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "max": {
          "type": "number"
         },
         "min": {
          "type": "number"
         }
        },
        "additionalProperties": false
       },
       "description": "Employee count range filter [{ min?, max? }]."
      },
      "industries": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "value"
        ],
        "properties": {
         "value": {
          "type": "string",
          "description": "FullEnrich company industry enum. Use Software Development for SaaS, Research Services for AI labs — not free-text labels. See docs.fullenrich.com/api/v2/general/enums#company-industry."
         },
         
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fullenrich-company-search-183a3fbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-enrich-git-shafu-stableenrich-compa-a1ba99-merit-systems.vercel.app](https://www.zero.xyz/host/stable-enrich-git-shafu-stableenrich-compa-a1ba99-merit-systems.vercel.app/llms.txt)
