# svm402 Solana Token Price & Liquidity Quote

> svm402 Solana Token Price & Liquidity Quote is a paid API for AI agents from svm402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current price and liquidity data for a Solana token by mint address, sourced from Jupiter and Helius aggregators.

## Facts

- Endpoint: GET https://svm402.com/price/:address
- 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/svm402-solana-token-price-liquidity-quote-a47d393d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yR13sBtRQl9RemoQuVsWO

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 svm402-solana-token-price-liquidity-quote-a47d393d
```

Example prompt: What's the current price and liquidity for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v?

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.01) price and liquidity snapshot for a Solana SPL token and do not need risk scoring, safety analysis, or deep on-chain forensics. Prefer this over the full analysis endpoint when latency and cost matter more than comprehensive due diligence. Use this for real-time portfolio tracking, pre-trade checks, or any workflow that polls token prices frequently.

## Known failure modes

- Invalid or malformed mint address returns an error (address must be base58, 32-44 chars)
- Unknown or very new token not indexed by Jupiter/Helius returns no data or empty result
- Token with zero liquidity may return a price of 0 or null liquidity fields
- Network or upstream provider (Jupiter/Helius) downtime causes timeout or 5xx error
- Payment failure (insufficient USDC or x402 protocol issue) blocks the request

## How this service works

Current price and liquidity data for a Solana token given its mint address, sourced from Jupiter and Helius. Call this for a quick, cheap market quote when you do not need the full analysis. — $0.01 USDC

## Output

Returns current market price and liquidity figures for the specified Solana token, aggregated from Jupiter and Helius. Typically includes price in USD or SOL terms and available liquidity depth, suitable for quick pre-trade checks or portfolio snapshots.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "maxLength": 44,
       "minLength": 32,
       "description": "Solana token mint address (base58, 32-44 chars)"
      }
     }
    }
   },
   "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/svm402-solana-token-price-liquidity-quote-a47d393d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from svm402.com](https://www.zero.xyz/host/svm402.com/llms.txt)
