# Solana Token Stats by Mint Address

> Solana Token Stats by Mint Address is a paid API for AI agents from cycle-angela-lamp-hamburg.trycloudflare.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-16).

Returns real-time Solana token statistics (price, liquidity, volume, market cap, FDV, price changes, transactions) for a given mint address

## Facts

- Endpoint: GET https://cycle-angela-lamp-hamburg.trycloudflare.com/api/sol/token-stats
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-stats-by-mint-address-cb26a234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mvds9lYDQI8toXv27OaQk

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 solana-token-stats-by-mint-address-cb26a234
```

Example prompt: What's the current price, liquidity, and 24-hour volume for the Solana token with mint address So11111111111111111111111111111111111111112? Also show me the price change over the last hour and 24 hours.

## When to prefer this

Use this endpoint when you need comprehensive on-chain and market stats for a specific Solana token and have its mint address. Ideal for DeFi research, trading bots, token screening, or portfolio monitoring on Solana. Prefer this over generic crypto price APIs when you need Solana-native metrics like liquidity, DEX source, and granular price changes.

## Known failure modes

- Invalid or unrecognized mint address returns an error or empty response
- Token not listed on any supported DEX may return null/missing fields
- Network timeout if the Cloudflare tunnel is under load
- Stale data if the underlying data source has not updated recently

## How this service works

Solana token statistics by mint address: price USD, liquidity, 24h volume, price change 5m 1h 6h 24h, transactions, market cap, FDV. JSON. Pass ?mint=<address>.

## Output

A JSON object containing the token's current price in USD, liquidity in USD, 24h trading volume, price change percentages at 5m/1h/6h/24h intervals, number of buys and sells in the last 24 hours, market cap, fully diluted valuation (FDV), the DEX where it's traded, the mint address, and a Unix timestamp of when the data was generated.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "dex": {
   "type": "string"
  },
  "fdv": {
   "type": "number"
  },
  "mint": {
   "type": "string"
  },
  "txns_24h": {
   "type": "object",
   "properties": {
    "buys": {
     "type": "number"
    },
    "sells": {
     "type": "number"
    }
   }
  },
  "price_usd": {
   "type": "number"
  },
  "volume_24h": {
   "type": "number"
  },
  "generated_at": {
   "type": "integer",
   "description": "unix seconds when payload was built"
  },
  "price_change": {
   "type": "object",
   "properties": {
    "h1": {
     "type": "number"
    },
    "h6": {
     "type": "number"
    },
    "m5": {
     "type": "number"
    },
    "h24": {
     "type": "number"
    }
   }
  },
  "liquidity_usd": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-stats-by-mint-address-cb26a234/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cycle-angela-lamp-hamburg.trycloudflare.com](https://www.zero.xyz/host/cycle-angela-lamp-hamburg.trycloudflare.com/llms.txt)
