{
  "x402Version": 2,
  "id": 3206,
  "slug": "3206",
  "resource": "https://api.qonoro.ai/v1/person/enrich",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x40B62aa49F4a929760fb2DD0Fcb0642f0AA872eb",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "50000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.qonoro.ai",
  "lastUpdated": "2026-08-26T22:43:07.733Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-08-26T22:43:07.339Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.qonoro.ai",
    "manifest_name": "api.qonoro.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}