# MintVerdict Trade Summary

> MintVerdict Trade Summary is a paid API for AI agents from api.mintverdict.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns launch-window trading shape for a Solana token mint: first buy slot, buy/sell counts, unique traders, and early per-slot buy volume.

## Facts

- Endpoint: GET https://api.mintverdict.com/v1/mint/:mint/trade-summary
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mintverdict-trade-summary-d678277d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pyS7UaXVb62d5LqojVO0e

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 mintverdict-trade-summary-d678277d
```

Example prompt: Pull the launch-window trade summary for Solana mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want to see the first buy slot, how many buys vs sells happened, how many unique traders were in early, and the per-slot buy volume.

## When to prefer this

Use this endpoint when you need a concise, launch-window trading shape for a specific Solana mint — especially for rug/bundle detection workflows, token screeners, or due diligence on new token launches. Prefer this over general on-chain data APIs when you specifically need aggregated early slot buy/sell counts, unique trader counts, and per-slot volume without building your own indexing pipeline. Complements MintVerdict's rug/bundle risk verdict endpoint for a full launch-quality picture.

## Known failure modes

- Invalid or malformed mint address (non-base58) returns a 400 error
- Mint with no recorded trading activity may return empty or null trade data
- Very new mints not yet indexed may return a 404 or empty result
- Rate limiting or payment failure (x402) if USDC payment is not properly handled
- Network timeouts if Solana RPC data is temporarily unavailable

## How this service works

Launch-window trade shape for a Solana mint: first buy slot, buy/sell counts, unique traders, early per-slot buy volume.

## Output

Returns a structured JSON object describing the trading activity during the launch window of the specified Solana token mint, including: the slot number of the first buy transaction, total buy count and sell count, number of unique trader wallets, and a breakdown of buy volume per early slot.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint address (base58)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mintverdict-trade-summary-d678277d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.mintverdict.com](https://www.zero.xyz/host/api.mintverdict.com/llms.txt)
