# Captain Data Company Finder

> Captain Data Company Finder is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.18/call, status unknown (last checked 2026-09-13).

Search for a company by name and retrieve matching company profiles from the Captain Data database.

## Facts

- Endpoint: GET https://x402.orthogonal.com/captaindata/companies/find
- Price: $0.18/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/captain-data-company-finder-38a99f7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8uI7GPbUfLeGtu7WpIcOb

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 captain-data-company-finder-38a99f7b
```

Example prompt: Can you find the company profile for 'Stripe' — I need to look up their details in Captain Data?

## When to prefer this

Use this endpoint when you need to look up a company's profile by name, particularly in B2B sales, lead enrichment, or research workflows. Prefer this over general web search when you need structured company profile data rather than raw web content. Ideal for enriching CRM records or qualifying leads by company name.

## Known failure modes

- No matching company found for the given name — returns empty results
- Ambiguous company name returns multiple unrelated companies
- Company exists but has limited profile data available
- Rate limiting or authentication errors if usage limits are exceeded
- Misspelled or variant company name fails to match the correct profile

## How this service works

Find a company by name. Returns matching company profiles.

## Output

Returns one or more matching company profiles that correspond to the searched company name, likely including details such as company name, industry, size, website, and other available firmographic data from Captain Data's database.

## 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": {
      "company_name": {
       "type": "string",
       "description": "Company name to search for."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/captain-data-company-finder-38a99f7b/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)
