# AgenticData Company Search

> AgenticData Company Search is a paid API for AI agents from api.agenticdata.host, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Search a 800M+ B2B contact database for companies by name or domain, returning matched company records.

## Facts

- Endpoint: GET https://api.agenticdata.host/v1/search/companies
- 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/agenticdata-company-search-2fc52ab9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LA8dN_cw2qaEdMfb990mX

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 agenticdata-company-search-2fc52ab9
```

Example prompt: Search AgenticData for companies matching 'Acme Corp' — return up to 10 results so I can see their domain, industry, and company profile details.

## When to prefer this

Use this endpoint when you need to search for companies by name or domain in a large B2B database. Prefer this over people-search or contact-enrichment endpoints when the primary goal is identifying or profiling a company entity rather than finding individual contacts. Best for sales prospecting, CRM enrichment, and lead qualification workflows where company-level firmographic data is the primary need.

## Known failure modes

- No matching companies found — results array is empty and total is 0
- Missing required 'input' object causes a 400 validation error
- Invalid query parameter types (e.g. non-integer limit) cause schema validation failure
- Rate limiting or payment failure (x402) blocks the request
- Ambiguous company name with many matches may return irrelevant results

## How this service works

MCP + API access to 800M+ B2B contacts. People search, email and phone enrichment, LinkedIn lookups — sub-200ms. Start with 2,000 free matches.

## Output

Returns a JSON object with a total count of matched companies and a results array containing matched company profile records. Each record may include company name, domain, industry, size, and other B2B firmographic data. Default limit is 25 results per call.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25
      },
      "company": {
       "type": "string"
      },
      "company_domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "results": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticdata-company-search-2fc52ab9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agenticdata.host](https://www.zero.xyz/host/api.agenticdata.host/llms.txt)
