Company Enrichment
Enrich a company from its domain: name, description, technologies, social profiles, mail infrastructure.
$0.1
USDC per call · x402
Endpoint
POST /v1/company/enrich
MCP name
agentbit.company_enrich
Status
active
Latency / uptime (7d)
939 ms · 100%
Call with x402
1. Send the request. 2. Receive 402 with accepts[]. 3. Sign the payment and retry with the X-PAYMENT header.
curl -X POST https://agentbit.app/v1/company/enrich \
-H 'Content-Type: application/json' \
-d '{"domain":"stripe.com"}'
Input schema
{
"type": "object",
"properties": {
"domain": {
"type": "string"
},
"company_name": {
"type": "string"
}
},
"required": []
}Output schema
{
"type": "object",
"properties": {
"company_name": {
"type": "string"
},
"website": {
"type": "string"
},
"technologies": {
"type": "array",
"items": {
"type": "string"
}
},
"social": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": []
}Code examples
// JavaScript (x402-fetch)
import { wrapFetchWithPayment } from "x402-fetch";
const fetchWithPay = wrapFetchWithPayment(fetch, wallet);
const r = await fetchWithPay("https://agentbit.app/v1/company/enrich", {
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({"domain":"stripe.com"})
});
console.log(await r.json());
# Python (x402 client)
from x402.clients.requests import x402_requests
s = x402_requests(account)
r = s.post("https://agentbit.app/v1/company/enrich",
json={"domain":"stripe.com"})
print(r.json())
// PHP
$r = Http::withHeaders(['X-PAYMENT' => $signedPayment])
->post('https://agentbit.app/v1/company/enrich',
array (
'domain' => 'stripe.com',
));
$data = $r->json();