# Qonoro Company Enrichment API

> Qonoro Company Enrichment API is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Enriches a company name, website, or domain with firmographic data including legal name, status, industry, HQ country, founding year, and confidence score.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/company/enrich
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-company-enrichment-api-d7a0eb0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lyeTzdFZlqohA4MmJXTMp

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 qonoro-company-enrichment-api-d7a0eb0b -d '<json body>'
```

Example prompt: Can you enrich Acme Corporation for me — their website is acmecorp.com — and give me their legal name, industry, founding year, headquarters country, company size, and how confident you are in the data?

## When to prefer this

Use this endpoint when you need structured firmographic data (industry, size, founding year, HQ country, funding stage) for a known company identified by name, website, or domain. Prefer this over general web search when you need structured, scored output with confidence metadata and source attribution rather than raw text.

## Known failure modes

- Company not found in data sources — low or zero confidence score returned
- Invalid or unresolvable domain/website input — API returns error or empty result
- Ambiguous company name with multiple matches — lower confidence score and partial data
- Rate limiting or payment failure — HTTP 402 or 429 response
- Stale data for recently founded or recently changed companies — quality_warnings field populated

## How this service works

Basic company identity enrichment for autonomous agents, including normalized profile fields, source URLs, coverage, and confidence scoring.

## Output

Returns a structured firmographic profile including company legal name, active/inactive status, industry vertical, headquarters country, founding year, company size range, funding stage, business summary, confidence score (0–1), data quality indicator, and a list of supporting source URLs.

## Example request

```json
{
 "input": {
  "body": {
   "depth": "standard",
   "website": "https://www.acmecorp.example.com",
   "buyer_region": "unknown",
   "company_name": "Acme Corporation"
  },
  "type": "http",
  "method": "POST",
  "headers": {},
  "bodyType": "json"
 },
 "output": {
  "type": "json",
  "example": {
   "risks": [],
   "sources": [],
   "industry": "Technology",
   "cache_hit": false,
   "competitors": [],
   "company_name": "Acme Corporation",
   "company_size": "1000-5000",
   "data_quality": "high",
   "funding_stage": "Series B",
   "opportunities": [],
   "sales_signals": [],
   "decision_makers": [],
   "target_customer": "Enterprise",
   "verified_claims": [],
   "business_summary": "Leading provider of enterprise solutions",
   "confidence_score": 0.85,
   "quality_warnings": [],
   "response_time_ms": 245,
   "company_size_note": "Based on LinkedIn data",
   "company_size_source": "LinkedIn",
   "recommended_actions": [],
   "structured_competitors": [],
   "structured_sales_signals": []
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Company domain when known (alternative to website)"
  },
  "website": {
   "type": "string",
   "description": "Official company website"
  },
  "company_name": {
   "type": "string",
   "description": "Company name to enrich"
  }
 }
}
```

## More

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