Use when all you have is a company domain and you need the people who can sign: owners, fo
Use when all you have is a company domain and you need the people who can sign: owners, founders, C-level, partners, VPs, heads and directors, each with title, location and profile link. Endpoints that enrich a known person want an email or a profile URL first; this one starts from the domain. Also returns the company's proven vendor stack, so one call answers who decides and what they already run.
210000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
hosaka-agents.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x712c78928080Adb009E31315c0c3c7473dA9648a",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73ktiC1qzkkit8=",
"payTo": "NLT4P2QFI3OO3PTLQHQXCAM2RA2Y7T4RZZKZF43BLMBKDFPFX54ZLDY2JU",
"asset": "31566704",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x712c78928080Adb009E31315c0c3c7473dA9648a",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x712c78928080Adb009E31315c0c3c7473dA9648a",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:143",
"payTo": "0x712c78928080Adb009E31315c0c3c7473dA9648a",
"asset": "0x754704Bc059F8C67012fEd69BC8A327a5aafb603",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x712c78928080Adb009E31315c0c3c7473dA9648a",
"asset": "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168",
"amount": "210000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9FDr6dYrxCRZYeaiXB86MqA9fuC3j5nH5u5fSQvD6QWd",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "210000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"domain": "figma.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"company": {
"vendors": [
{
"category": "hr",
"evidence": "SPF: include:mg-spf.greenhouse.io",
"name": "Greenhouse"
}
]
},
"contacts": {
"costUsd": 0.15,
"kind": "decision-makers",
"summary": {
"count": 1,
"people": [
{
"headline": "VP Engineering",
"location": "London, United Kingdom",
"name": "Jane Doe",
"profile": "https://www.linkedin.com/in/…"
}
]
}
},
"domain": "figma.com"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"domain": {
"description": "Company domain, e.g. figma.com",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}
},
"type": "object"
},
"output": {
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://hosaka-agents.vercel.app/executives" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://hosaka-agents.vercel.app/executives");
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://hosaka-agents.vercel.app/executives")
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/8351.json, and this resource appears in /discovery/resources and /discovery/search.