# Forge x402 – Solana New Pairs Feed

> Forge x402 – Solana New Pairs Feed is a paid API for AI agents from temporary-brisk-indigo-3tes07o.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a live list of newly created Solana DEX token pairs, including mint addresses and DexScreener URLs, paid per-call via x402 USDC.

## Facts

- Endpoint: POST https://temporary-brisk-indigo-3tes07o.vercel.app/api/v1/solana/new-pairs
- 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/forge-x402-solana-new-pairs-feed-c83f4a46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lbk5DsoGcDBp0qEsyuCz3

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 forge-x402-solana-new-pairs-feed-c83f4a46 -d '<json body>'
```

Example prompt: Pull the 25 most recently listed token pairs on Solana DEX right now — I want the mint addresses and DexScreener links so I can evaluate which ones are worth trading.

## When to prefer this

Choose this endpoint when you need real-time discovery of brand-new Solana DEX token pairs without managing API keys — particularly suited for trading agents, sniper bots, or monitoring pipelines that pay per-call via x402 USDC on Base or Solana. Prefer this over general market data APIs when the specific use case is earliest possible detection of newly listed pairs rather than price or volume data on established tokens.

## Known failure modes

- Payment failure: x402 USDC payment not processed, returns 402 Payment Required
- Invalid limit parameter: value outside 1-50 range may return an error or be clamped
- No new pairs available: may return an empty array if no pairs launched recently
- Vercel cold start: temporary latency spike on first call
- Rate or budget exceeded: payment wallet insufficient USDC balance

## How this service works

Live Solana DEX data for trading agents: Jupiter route quality, venue spreads in bps, liquidity snapshots, new pairs, trending tokens. Pay per call via x402 with USDC on Base or Solana. No API keys.

## Output

Returns a JSON object with a count of new pairs and an array of pair profiles, each containing a creation timestamp, a DexScreener pair URL, and the token mint address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Max profiles to return (1-50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "count": 2,
 "profiles": [
  {
   "at": "2026-09-01T00:00:00.000Z",
   "url": "https://dexscreener.com/solana/pair",
   "token": "Mint..."
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forge-x402-solana-new-pairs-feed-c83f4a46/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from temporary-brisk-indigo-3tes07o.vercel.app](https://www.zero.xyz/host/temporary-brisk-indigo-3tes07o.vercel.app/llms.txt)
