# OneShotAgent Company Enrichment

> OneShotAgent Company Enrichment is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Enriches company data from a domain, company name, LinkedIn URL, or stock ticker symbol

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/enrich/company
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-company-enrichment-4f4c4005
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cp3gctzy9F6dhsR5f8jeQ

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 oneshotagent-company-enrichment-4f4c4005 -d '<json body>'
```

Example prompt: Can you pull up the company profile for Stripe — try using their domain stripe.com or their LinkedIn URL if you have it?

## When to prefer this

Use this endpoint when you need structured firmographic data about a company and have at least one identifier (domain, name, ticker, or LinkedIn URL). It is especially valuable in B2B sales, CRM enrichment, investment research, and competitive intelligence workflows. Prefer this over generic web search when you need structured, machine-readable company data rather than raw web content.

## Known failure modes

- Company not found for the given identifier — returns empty or null result
- Invalid LinkedIn URL format — returns validation error
- Ambiguous company name with multiple matches — may return incorrect company
- Unknown stock ticker — no data returned
- Missing all input fields — request rejected due to no identifier provided
- Rate limiting or payment failure — request blocked

## How this service works

Company enrichment from domain, name, LinkedIn URL, or ticker

## Output

Returns enriched company data including firmographic details such as company name, industry, size, description, location, website, LinkedIn profile, and other business metadata resolved from the provided identifier (domain, name, ticker, or LinkedIn URL).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Company name"
  },
  "domain": {
   "type": "string",
   "description": "Company domain"
  },
  "ticker": {
   "type": "string",
   "description": "Stock ticker symbol"
  },
  "linkedin_url": {
   "type": "string",
   "format": "uri",
   "description": "Company LinkedIn URL"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-company-enrichment-4f4c4005/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
