# Solana New Trading Pair Scanner (Snipe/Pair)

> Solana New Trading Pair Scanner (Snipe/Pair) is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns real-time trading pair data and safety analysis for a given Solana token contract address, surfacing new pairs for sniping opportunities

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/snipe/pair
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-new-trading-pair-scanner-snipe-pair-27c51c2d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lGkLWcdhFdJOGW0eRXEs6

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-new-trading-pair-scanner-snipe-pair-27c51c2d -d '<json body>'
```

Example prompt: Scan the trading pairs for Solana token contract 0x1234...abcd and tell me if there are any new pairs listed, whether it looks safe to snipe, and what the liquidity situation is.

## When to prefer this

Use this endpoint when you need real-time, pay-per-call pair discovery and safety screening for a specific Solana token contract without setting up API keys or subscriptions. Ideal for AI trading agents that need to snipe new pairs programmatically and want built-in honeypot/rug detection in a single call. Prefer this over general token price APIs when the goal is pair-level sniping intelligence rather than just price data.

## Known failure modes

- Invalid or malformed contract address returns an error
- Token contract has no pairs listed yet — empty result
- Unsupported chain specified returns an error or empty data
- Rate limiting or payment failure (HTTP 402) if stablecoin payment is not properly attached
- Network or RPC latency causing timeout on very new pairs

## How this service works

Full trading snapshot for a token: live price, liquidity, FDV, market cap, 5m/1h/6h/24h volume and price change, buy/sell counts, and pair age. Send { address, chain? }. Complete pre-trade due diligence in one call.

## Output

Returns trading pair details for the specified token contract, including pair addresses, liquidity metrics, and safety/honeypot screening signals relevant to sniping decisions on Solana DEXes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Optional chain filter, e.g. base"
  },
  "address": {
   "type": "string",
   "description": "0x token contract address"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-new-trading-pair-scanner-snipe-pair-27c51c2d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
