# SniperX Real-Time Token Price & Change Rates

> SniperX Real-Time Token Price & Change Rates is a paid API for AI agents from x402.sniperx.fun, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches the current price and percentage change rates for a Solana token across 5min, 10min, 30min, 1hour, and 24hour intervals

## Facts

- Endpoint: GET https://x402.sniperx.fun/api/v1/token/price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sniperx-real-time-token-price-change-rates-04d75d7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TErmO-to3hGp0fTZ7G11T

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 sniperx-real-time-token-price-change-rates-04d75d7d
```

Example prompt: What's the current price of the Solana token at address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v, and how much has it changed over the last 5 minutes, 30 minutes, and 24 hours?

## When to prefer this

Use this endpoint when you need a quick, real-time snapshot of a Solana token's price and short-term momentum across multiple time intervals. It is ideal for trading bots, alert systems, or dashboards that need current price and multi-interval change rates in a single call, rather than historical OHLCV data or market cap trends.

## Known failure modes

- Invalid or malformed Solana token address returns an error
- Token address not found or unlisted returns no data
- Network latency may cause stale or unavailable price data
- Rate limiting or payment issues may block the request

## How this service works

Get real-time token price and change rates (5min, 10min, 30min, 1hour, 24hour)

## Output

Returns the real-time price of the specified Solana token along with percentage change rates for five time intervals: 5 minutes, 10 minutes, 30 minutes, 1 hour, and 24 hours — useful for assessing current momentum and short-term price action.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token_address"
     ],
     "properties": {
      "token_address": {
       "type": "string",
       "description": "The Solana token 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/sniperx-real-time-token-price-change-rates-04d75d7d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.sniperx.fun](https://www.zero.xyz/host/x402.sniperx.fun/llms.txt)
