LEI / Company Identity
LEI lookups, global company identity search and identifier validation via GLEIF.
$0.003
USDC per call · x402
Endpoint
POST /v1/business/identity
MCP name
agentbit.business_identity
Status
active
Latency / uptime (7d)
251 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/business/identity \
-H 'Content-Type: application/json' \
-d '{"operation":"lei_lookup","lei":"5493001KJTIIGC8Y1R12"}'
Input schema
{
"type": "object",
"properties": {
"operation": {
"type": "string"
},
"lei": {
"type": "string"
},
"company_name": {
"type": "string"
}
},
"required": [
"operation"
]
}Output schema
{
"type": "object",
"properties": {
"found": {
"type": "boolean"
},
"legal_name": {
"type": "string"
},
"jurisdiction": {
"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/business/identity", {
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({"operation":"lei_lookup","lei":"5493001KJTIIGC8Y1R12"})
});
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/business/identity",
json={"operation":"lei_lookup","lei":"5493001KJTIIGC8Y1R12"})
print(r.json())
// PHP
$r = Http::withHeaders(['X-PAYMENT' => $signedPayment])
->post('https://agentbit.app/v1/business/identity',
array (
'operation' => 'lei_lookup',
'lei' => '5493001KJTIIGC8Y1R12',
));
$data = $r->json();