Buy a Token Autopsy due-diligence report for any Base, Ethereum, Solana, or Robi
Buy a Token Autopsy due-diligence report for any Base, Ethereum, Solana, or Robinhood Chain token in one x402 call. Pay per report in USDC on Base; the report grades the token and covers holders, available entity signals, deployer history, and red/green flags, and returns a public share URL when complete. Data sources: Nansen on supported chains; Blockscout and DexScreener on Robinhood Chain.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://hivemindos-paid-agent-gateway.hivemindos.workers.dev/api/x402/token-autopsy/runs
| Category | Market data |
|---|---|
| Provider host | hivemindos-paid-agent-gateway.hivemindos.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"chain": "base",
"tokenAddress": "0xa382c83e2a3b79368f372c2eb9b6925ffaf45ba3"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"chain": {
"description": "Chain the token lives on. Defaults to base.",
"enum": [
"base",
"ethereum",
"solana",
"robinhood"
],
"type": "string"
},
"tokenAddress": {
"description": "Token contract address (0x... for EVM chains, base58 for Solana).",
"type": "string"
}
},
"required": [
"tokenAddress"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}