# Token Dossier – Deep Due-Diligence Report

> Token Dossier – Deep Due-Diligence Report is a paid API for AI agents from x402-endpoints.onrender.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns a comprehensive token due-diligence dossier covering safety score, honeypot/tax analysis, top holder concentration, liquidity/FDV/volume/pool-age, contract control flags, and an AI-generated red-flag narrative for any EVM or Solana token.

## Facts

- Endpoint: GET https://x402-endpoints.onrender.com/crypto/token-dossier
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-dossier-deep-due-diligence-report-3d2d0925
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bMRTGX46sy3Lns24JGYXe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability token-dossier-deep-due-diligence-report-3d2d0925
```

Example prompt: Can you run a full token dossier on 0x6982508145454Ce325dDbE47a25d4ec3d2311933 on Ethereum — I want the safety score, honeypot check, top holder concentration, liquidity stats, and any AI red flags before I ape in?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional token risk report in a single call — combining safety, liquidity, holder concentration, contract control, and AI narrative — rather than making separate calls to individual safety or liquidity checkers. Prefer this over a plain safety check when the user wants to deeply evaluate a token before a significant position, or when holder concentration and contract control (mintable, owner renounced) are critical to the decision.

## Known failure modes

- Invalid token address format returns 400 error
- Token not found on specified chain returns empty or 404
- Unsupported chain identifier returns validation error
- Very new or low-liquidity tokens may have incomplete liquidity/volume data
- Solana SPL mint addresses must be valid base58; EVM addresses must be 0x+40 hex

## How this service works

Full degen token dossier in one call: safety score + honeypot/tax + detailed TOP HOLDERS and concentration + liquidity/FDV/volume/pool-age + contract control (owner, creator, mintable, open-source) + an AI red-flag narrative. Deep due-diligence report on a token before aping — the premium tier above a plain safety check. EVM chains and Solana.

## Output

A structured JSON report containing: safety/risk score, honeypot detection result, buy/sell tax rates, top holder addresses and their ownership percentages with concentration metrics, liquidity depth, FDV, 24h trading volume, pool age, contract ownership/creator info, mintability and open-source status, and a natural-language AI narrative summarizing red flags and risk factors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base | ethereum | bsc | polygon | arbitrum | optimism | avalanche | solana (default base)"
      },
      "token": {
       "type": "string",
       "description": "Token contract (EVM 0x+40hex) or SPL mint (base58)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "error": null,
  "query": {
   "chain": "base",
   "token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
  },
  "cached": false,
  "safety": {
   "flags": [],
   "score": 95,
   "rating": "safe",
   "honeypot": false,
   "buy_tax_pct": 0,
   "sell_tax_pct": 0
  },
  "source": "GoPlus Security + Honeypot.is + DexScreener + Claude Haiku (narrative)",
  "holders": {
   "top": [
    {
     "tag": "Aerodrome",
     "address": "0xabc...",
     "percent": 0.08,
     "is_contract": true
    }
   ],
   "count": "250000",
   "top10_share_pct": 42.1
  },
  "contract": {
   "is_proxy": true,
   "mintable": true,
   "open_source": true,
   "owner_address": null,
   "creator_address": null,
   "can_take_back_ownership": false
  },
  "liquidity": {
   "dex": "aerodrome",
   "symbol": "USDC",
   "fdv_usd": 40000000000,
   "price_usd": 1,
   "liquidity_usd": 5200000,
   "pool_age_hours": 9000,
   "volume_24h_usd": 18000000,
   "price_change_24h_pct": 0.01
  },
  "narrative": {
   "mode": "llm",
   "summary": "USDC is a fully-collateralized blue-chip stablecoin with deep liquidity; automated checks show no rug/honeypot signals.",
   "red_flags": [],
   "bottom_line": "Low automated risk; standard stablecoin."
  },
  "timestamp": "2026-07-02T12:00:00Z",
  "disclaimer": "Automated token dossier (safety + holders + liquidity + narrative). Heuristic, not financial advice. Always DYOR.",
  "data_freshness": {
   "as_of": "2026-07-02T12:00:00Z",
   "sources": [
    "GoPlus Security",
    "Honeypot.is",
    "DexScreener",
    "Claude Haiku (narrative)"
   ],
   "chain_kind": "evm",
   "age_seconds": 0,
   "retrieved_at": "2026-07-02T12:00:00Z",
   "deterministic": false,
   "narrative_mode": "llm"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-dossier-deep-due-diligence-report-3d2d0925/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-endpoints.onrender.com](https://www.zero.xyz/host/x402-endpoints.onrender.com/llms.txt)
