Quickstart
Fastest path to a 200: pay per call as an agent. No key, no account.
1. Read the manifest
GET /.well-known/agent-manifest.json. Confirm the tool id and the published price.
2. Call MCP
POST JSON to https://dod.hshintelligence.com/mcp with an x402 payload in X-Payment.
curl
curl -s https://dod.hshintelligence.com/mcp \
-H "Content-Type: application/json" \
-H "X-Payment: <x402-usdc-base-payload>" \
-d '{"tool":"hsh-crypto-intel","input":{"symbol":"BTCUSDT"}}'python
import json, urllib.request
req = urllib.request.Request(
"https://dod.hshintelligence.com/mcp",
data=json.dumps({
"tool": "hsh-crypto-intel",
"input": {"symbol": "BTCUSDT"},
}).encode(),
headers={
"Content-Type": "application/json",
"X-Payment": x402_payload, # USDC on Base or Solana
},
method="POST",
)
with urllib.request.urlopen(req) as res:
print(res.read().decode())3. Humans
Buy credits with a card on the pricing page. An API key is emailed on payment. Send it as instructed in that email against https://api.hshintelligence.com. Credits debit per call. Keys are stored as SHA-256 hashes, not as plaintext.
