# Token Risk Report Card Image Generator

> Token Risk Report Card Image Generator is a paid API for AI agents from vit-tu-ma-production.up.railway.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Generates a shareable 1200x630 PNG infographic with a 0-100 market-maker risk score, liquidity stats, holder concentration, 24h volume, and volume-spike ratio for any EVM or Solana token

## Facts

- Endpoint: GET https://vit-tu-ma-production.up.railway.app/api/bazaar/token-report-card
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-risk-report-card-image-generator-9b694a50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y-wBCfDZ0nDgmwDyP7Rbh

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-risk-report-card-image-generator-9b694a50
```

Example prompt: Generate a shareable PNG report card image showing the market-maker risk score and key safety metrics for the token at address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum — I want to post it to Discord.

## When to prefer this

Choose this endpoint when you need a visual, shareable artifact rather than raw JSON data — specifically when attaching a risk report to a Discord/Telegram alert, social media post, or email report. For programmatic/JSON risk score consumption, prefer the sibling market-maker risk score endpoint. This endpoint is uniquely valuable for human-readable social media outputs and agent-generated media attachments.

## Known failure modes

- Invalid or non-existent token contract address returns an error or blank image
- Unsupported chain name returns a validation error
- Token with no on-chain data (e.g. newly deployed with zero liquidity) may return incomplete metrics
- Network timeout if the underlying data aggregation is slow
- Payment failure if x402 USDC balance is insufficient

## How this service works

Generates a shareable PNG infographic report card for any token: 0-100 market-maker risk score with color-coded verdict, liquidity, holder concentration, 24h volume, and volume-spike ratio — rendered as a 1200x630 social-ready image. Unique media output: agents can attach the image directly to reports, alerts, Discord/Telegram posts, or tweets. Supports EVM chains and Solana.

## Output

A 1200x630 PNG image file containing a visually designed infographic with: a 0-100 market-maker manipulation risk score with color-coded verdict, liquidity pool size, liquidity-to-marketcap ratio, top holder concentration percentage, 24h trading volume, and volume-spike ratio — formatted for direct sharing on social platforms like Twitter, Discord, or Telegram.

## 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": [
      "address",
      "chain"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain name, e.g. base, bsc, ethereum, solana"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-risk-report-card-image-generator-9b694a50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vit-tu-ma-production.up.railway.app](https://www.zero.xyz/host/vit-tu-ma-production.up.railway.app/llms.txt)
