# FullEnrich Company Search

> FullEnrich Company Search is a paid API for AI agents from stable-enrich-git-shafu-stableenrich-valid-89fbcd-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, returning structured company profiles with pagination support

## Facts

- Endpoint: POST https://stable-enrich-git-shafu-stableenrich-valid-89fbcd-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-79a5eefe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wlRCcNJ-O45y-PLVLd9va

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-79a5eefe -d '<json body>'
```

Example prompt: Search FullEnrich for up to 10 software development companies headquartered in New York with between 50 and 500 employees — I need their legal names and headcount for a prospecting list.

## When to prefer this

Use this endpoint when you need to discover or look up companies by name, industry, headcount, or headquarters — especially for B2B sales prospecting, market research, or resolving brand names to legal entity names. Prefer this over generic web search when you need structured, filterable company data rather than unstructured text results. Best when you know the industry classification in LinkedIn taxonomy terms (Software Development, Research Services) rather than casual labels like SaaS or AI.

## Known failure modes

- 400 error if only limit/page is provided without names, industries, or headquarters_locations filters
- 400 error if filter values are not provided as [{value: '...'}] objects
- No results returned if brand name used instead of legal name (e.g. Cursor instead of Anysphere)
- Incorrect industry category if common terms like SaaS or AI are used instead of LinkedIn-style classifications like Software Development or Research Services
- Pagination failure if search_after token from a previous response is not passed correctly

## How this service works

FullEnrich Company Search — by name, industry, headcount, HQ. Requires names, industries, or headquarters_locations as [{ value: "..." }] (plain strings coerced); limit/page alone → 400. Paginate via search_after. Legal names not brands (Anysphere≠Cursor). Software Development not SaaS; Research Services not AI.

## Output

Returns a list of structured company profiles including legal company names, industry classifications, headcount ranges, and headquarters locations. Also returns a search_after token for paginating through additional results.

## 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-79a5eefe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app](https://www.zero.xyz/host/stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app/llms.txt)
