x402-native professional person enrichment for autonomous agents
x402-native professional person enrichment for autonomous agents. Given a full name and company, returns title, seniority, department, decision-maker status, LinkedIn URL, location, and a brief bio. Structured JSON. Paid per request via x402.
50000 (raw units)
price
2
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": {
"buyer_region": "unknown",
"company_name": "Stripe",
"company_website": "https://stripe.com",
"depth": "standard",
"full_name": "Patrick Collison"
},
"bodyType": "json",
"inputSchema": {
"properties": {
"buyer_region": {
"description": "Optional privacy-safe buyer region for operational reporting.",
"enum": [
"PR",
"outside_PR",
"unknown"
],
"type": "string"
},
"company_name": {
"description": "Company the person works at.",
"type": "string"
},
"company_website": {
"description": "Optional company website URL.",
"type": "string"
},
"depth": {
"default": "standard",
"enum": [
"standard",
"deep"
],
"type": "string"
},
"full_name": {
"description": "Full name of the person to enrich.",
"type": "string"
},
"linkedin_url": {
"description": "Optional known LinkedIn profile URL.",
"type": "string"
}
},
"required": [
"full_name",
"company_name"
],
"type": "object"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"bio": "Patrick Collison is the CEO and co-founder of Stripe, the global payments infrastructure company.",
"cache_hit": false,
"company_name": "Stripe",
"confidence_score": 0.95,
"department": "executive",
"email": null,
"first_name": "Patrick",
"full_name": "Patrick Collison",
"is_decision_maker": true,
"last_name": "Collison",
"linkedin_url": "https://www.linkedin.com/in/patrickcollison",
"location": "San Francisco, CA",
"quality_warnings": [],
"request_id": "a1b2c3d4-0000-0000-0000-000000000000",
"response_time_ms": 5200,
"seniority": "c_level",
"sources": [
"https://stripe.com/about",
"https://linkedin.com/in/patrickcollison"
],
"title": "CEO & Co-Founder"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"buyer_region": {
"description": "Optional privacy-safe buyer region for operational reporting.",
"enum": [
"PR",
"outside_PR",
"unknown"
],
"type": "string"
},
"company_name": {
"description": "Company the person works at.",
"type": "string"
},
"company_website": {
"description": "Optional company website URL.",
"type": "string"
},
"depth": {
"default": "standard",
"enum": [
"standard",
"deep"
],
"type": "string"
},
"full_name": {
"description": "Full name of the person to enrich.",
"type": "string"
},
"linkedin_url": {
"description": "Optional known LinkedIn profile URL.",
"type": "string"
}
},
"required": [
"full_name",
"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": {
"bio": {
"type": "string"
},
"cache_hit": {
"type": "boolean"
},
"company_name": {
"type": "string"
},
"confidence_score": {
"type": "number"
},
"department": {
"enum": [
"engineering",
"sales",
"marketing",
"finance",
"product",
"hr",
"legal",
"operations",
"executive",
"other",
"unknown"
],
"type": "string"
},
"email": {
"type": [
"string",
"null"
]
},
"first_name": {
"type": [
"string",
"null"
]
},
"full_name": {
"type": "string"
},
"is_decision_maker": {
"type": "boolean"
},
"last_name": {
"type": [
"string",
"null"
]
},
"linkedin_url": {
"type": [
"string",
"null"
]
},
"location": {
"type": [
"string",
"null"
]
},
"quality_warnings": {
"items": {
"type": "string"
},
"type": "array"
},
"request_id": {
"type": "string"
},
"response_time_ms": {
"type": [
"number",
"null"
]
},
"seniority": {
"enum": [
"c_level",
"vp",
"director",
"manager",
"individual_contributor",
"unknown"
],
"type": "string"
},
"sources": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.qonoro.ai/v1/person/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/person/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/person/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/3206.json, and this resource appears in /discovery/resources and /discovery/search.