# Solana Intel Token Analytics

> Solana Intel Token Analytics is a paid API for AI agents from solana-app-production.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns comprehensive analytics for a Solana SPL token including price, liquidity, trading volume, risk metrics, and organic activity score

## Facts

- Endpoint: GET https://solana-app-production.up.railway.app/token/:mint/analytics
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-intel-token-analytics-a5400395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MVPf5x2zTOKLwXuWzYfcV

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-intel-token-analytics-a5400395
```

Example prompt: Pull up the full analytics for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want to see price, liquidity, volume, risk, and organic score.

## When to prefer this

Use this endpoint when you need a quick, multi-dimensional analytics snapshot of a specific Solana SPL token — especially when evaluating risk, liquidity health, and organic trading activity together in a single call. Prefer this over on-chain RPC calls when you need aggregated, scored intelligence rather than raw transaction data.

## Known failure modes

- Invalid or unrecognized mint address returns an error or empty result
- Token with no trading history may return null or zero values for volume and liquidity
- Network or Railway deployment downtime causes 5xx errors
- Payment failure via x402 protocol blocks the request
- Newly created tokens may have incomplete analytics data

## How this service works

Solana token analytics: price, liquidity, volume, risk, organic score

## Output

Returns a structured analytics object containing the token's current price, liquidity depth, trading volume, a risk score indicating potential dangers (e.g. rug pull signals, concentration), and an organic score measuring genuine vs bot-driven 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana SPL token mint address (path parameter)"
      }
     }
    }
   },
   "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/solana-intel-token-analytics-a5400395/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from solana-app-production.up.railway.app](https://www.zero.xyz/host/solana-app-production.up.railway.app/llms.txt)
