# MadeOnSol Token Snapshot

> MadeOnSol Token Snapshot is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a live snapshot of a Solana token's price (USD/SOL), market cap, FDV, liquidity, liquidity/MC ratio, primary DEX/pool, Token-2022 flags, and KOL buyer activity

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/token/49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-token-snapshot-d24fee42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_orQaCEOGH8IUSG0No01Ee

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 madeonsol-token-snapshot-d24fee42
```

Example prompt: Pull a live snapshot for Solana token 49x3fgcezXi58YDjZUoKR241UNRFmrKeZTikEThkpump — I want the current USD and SOL price, market cap, FDV, liquidity, liquidity-to-MC ratio, which DEX and pool it's primarily on, any Token-2022 flags, and whether any KOLs have been buying.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call live snapshot of a Solana token's market and on-chain status — especially useful when you want price, liquidity health, DEX routing, Token-2022 compliance flags, and KOL signal all in one response rather than stitching together multiple data sources.

## Known failure modes

- Invalid or unrecognized token mint address returns an error or empty result
- Token not yet listed or with zero liquidity may return null/zero fields
- Rate limiting or payment failure returns 402 or 429
- Stale data if the token was recently launched and cache hasn't refreshed
- Network congestion on Solana may delay on-chain data freshness

## How this service works

Returns analytics and risk/market data for a Solana token mint, including price, market cap, liquidity, authority status, deployer info, and recent performance signals.

## Output

A JSON object containing the token's real-time price in USD and SOL, market cap, fully diluted valuation, total liquidity, liquidity-to-market-cap ratio, the primary DEX and pool it trades on, Token-2022 extension flags, and a summary of key opinion leader (KOL) buyer activity.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint (base58)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "description": "JSON payload — full field reference at https://madeonsol.com/x402",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-token-snapshot-d24fee42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from madeonsol.com](https://www.zero.xyz/host/madeonsol.com/llms.txt)
