# Qonoro Company Search

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

Discovers companies matching filters like industry, headquarters, size, founding year, or keywords, returning results with confidence scores and sources.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/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/qonoro-company-search-50352caf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sAYFRFgmfvUZRwwnKZdd9

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-search-50352caf -d '<json body>'
```

Example prompt: Find me up to 8 medium-sized fintech companies headquartered in London that were founded after 2015 — I need their names, domains, and a confidence score for each match.

## When to prefer this

Use this endpoint when you need to discover companies from scratch using filtering criteria (industry, size, location, founding year, keywords) rather than looking up a known company. It is the right choice for lead generation, competitive mapping, market research, or deal sourcing workflows where you don't already have a company name or domain to enrich.

## Known failure modes

- No matching companies found for given filters — empty results array returned
- Overly broad keywords yield low confidence scores and quality warnings
- Invalid size bucket value causes validation error
- founded_after greater than founded_before causes zero results
- Rate limiting or payment failure (x402) blocks the request
- Ambiguous hq_location string may fail to resolve to a region

## How this service works

Company discovery for autonomous agents: find companies matching industry, headquarters location, size, founding year, or keyword criteria, with sources and confidence scores per match.

## Output

Returns a list of up to 10 matching companies, each with company name, domain, website, industry, headquarters country, founding year, size bucket, and a confidence score. Also includes the search criteria echoed back, total result count, sources used, cache hit status, response time in milliseconds, quality warnings, and a request ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "enum": [
    "micro",
    "small",
    "medium",
    "large"
   ],
   "type": "string",
   "description": "Company size bucket filter."
  },
  "limit": {
   "type": "integer",
   "default": 5,
   "description": "Maximum number of matching companies to return (1-10)."
  },
  "industry": {
   "type": "string",
   "description": "Industry or sector keyword (e.g. 'fintech', 'healthcare')."
  },
  "keywords": {
   "type": "string",
   "description": "Free-text keywords describing the company (products, market, technology)."
  },
  "hq_location": {
   "type": "string",
   "description": "Headquarters city, state, country, or region filter."
  },
  "founded_after": {
   "type": "integer",
   "description": "Only include companies founded in or after this year."
  },
  "founded_before": {
   "type": "integer",
   "description": "Only include companies founded in or before this year."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-company-search-50352caf/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)
