Verify a Honduran business
A verified local visits the address, photographs the premises, and checks the mercantile registry. Proof bundle returned within 48 h.
POST https://api.bottrunk.com/s/verify-business-hn
Call it
# Ask. You get a 402 with the payment requirements.
curl https://api.bottrunk.com/s/verify-business-hn \
-d '{"url": "https://example.com/pricing"}'
# Pay and retry. Any x402 client does this for you.
curl https://api.bottrunk.com/s/verify-business-hn \
-H "X-PAYMENT: <signed USDC transfer>" \
-d '{"url": "https://example.com/pricing"}'
from x402.clients import requests as x402_requests
session = x402_requests.x402_http_adapter(account)
r = session.post(
"https://api.bottrunk.com/s/verify-business-hn",
json={"url": "https://example.com/pricing"},
)
print(r.json()["markdown"])
{ "mcpServers": { "bottrunk": { "url": "https://mcp.bottrunk.com" } } }
# then call the tool `verify_business_hn` from your agent
Input
| name | string | Business name. |
| address | string | Street address, city. |
Output
| verified | boolean | Whether the business exists at the address. |
| proof | object | Photos and registry excerpt. |