Basic company identity enrichment for autonomous agents, including normalized profile fiel
Basic company identity enrichment for autonomous agents, including normalized profile fields, source URLs, coverage, and confidence scoring.
50000 (raw units)
price
3
calls / 30d
1
unique payers
2026-08-26
updated
Provider
api.qonoro.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x40B62aa49F4a929760fb2DD0Fcb0642f0AA872eb",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"company_name": "Stripe",
"domain": "stripe.com",
"website": "https://stripe.com"
},
"bodyType": "json",
"inputSchema": {
"properties": {
"company_name": {
"description": "Company name to enrich",
"type": "string"
},
"domain": {
"description": "Company domain when known (alternative to website)",
"type": "string"
},
"website": {
"description": "Official company website",
"type": "string"
}
},
"required": [
"company_name"
],
"type": "object"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"cache_hit": false,
"company_name": "Stripe",
"confidence_score": 0.88,
"coverage": "public_web",
"data_tier": "enrich",
"domain": "stripe.com",
"founded": "2010",
"headquarters_country": "US",
"industry": "Financial Technology",
"legal_name": "Stripe Inc.",
"quality_warnings": [],
"registered_countries": [
"US",
"IE"
],
"response_time_ms": 600,
"size": "large",
"sources": [
"https://stripe.com",
"https://www.crunchbase.com/organization/stripe"
],
"status": "active",
"website": "https://stripe.com"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"company_name": {
"description": "Company name to enrich",
"type": "string"
},
"domain": {
"description": "Company domain when known (alternative to website)",
"type": "string"
},
"website": {
"description": "Official company website",
"type": "string"
}
},
"required": [
"company_name"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"inputSchema": {
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cache_hit": {
"type": "boolean"
},
"company_name": {
"type": "string"
},
"confidence_score": {
"type": "number"
},
"coverage": {
"type": "string"
},
"data_tier": {
"type": "string"
},
"domain": {
"type": "string"
},
"founded": {
"type": "string"
},
"headquarters_country": {
"type": "string"
},
"industry": {
"type": "string"
},
"legal_name": {
"type": "string"
},
"quality_warnings": {
"type": "array"
},
"registered_countries": {
"items": {
"type": "string"
},
"type": "array"
},
"response_time_ms": {
"type": "number"
},
"size": {
"enum": [
"micro",
"small",
"medium",
"large",
"unknown"
],
"type": "string"
},
"sources": {
"type": "array"
},
"status": {
"enum": [
"active",
"inactive",
"unknown"
],
"type": "string"
},
"website": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.qonoro.ai/v1/company/enrich" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.qonoro.ai/v1/company/enrich");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.qonoro.ai/v1/company/enrich")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3204.json, and this resource appears in /discovery/resources and /discovery/search.