# Solana Token Price Lookup

> Solana Token Price Lookup is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches real-time price, liquidity, and market pair data for a Solana SPL token mint address using Dexscreener's token endpoint.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/pearl_finch/solana-token-price
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-price-lookup-d1abd9d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KZE0htggNtg3LyKNDDXU6

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-price-lookup-d1abd9d8 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need real-time on-chain DEX price and liquidity data for a specific Solana SPL token by its mint address, without needing an API key or account. Prefer this over centralized exchange APIs when the token is only traded on Solana DEXes or when you need Dexscreener's aggregated market pair coverage.

## Known failure modes

- Invalid or non-existent mint address returns empty or error response
- Token not listed on any Dexscreener-tracked DEX returns no market data
- Dexscreener upstream API unavailability causes timeout or failure
- Malformed mint address format causes request rejection
- Token with very low liquidity may return incomplete market pair data

## How this service works

Solana Token Price - Call when you need price, liquidity and pair data for a Solana SPL token before trading it or valuing a holding. Send the token mint address. Returns Dexscreener's pair data with the current price and pool liquidity. No API key needed.

## Output

Returns the token's current price, available liquidity, and market pair data sourced from Dexscreener for the specified Solana SPL token mint address. Data includes DEX trading pairs and associated market metrics.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-price-lookup-d1abd9d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
