# Oracle Solana Token Launch Feed

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

Returns recently launched Solana tokens across Pump.fun, Raydium V4/CPMM, and PumpSwap with metadata, liquidity, and creator info

## Facts

- Endpoint: GET https://oracle-production-d5ba.up.railway.app/launches/recent
- 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/oracle-production-d5ba-up-railway-app-4ca11da8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vEDGwhGVje1-8TqQpe8yj

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 oracle-production-d5ba-up-railway-app-4ca11da8
```

Example prompt: Show me all new Solana token launches from the last 15 minutes across every venue — Pump.fun, Raydium, and PumpSwap — and give me up to 50 results.

## When to prefer this

Use this endpoint when you need a real-time feed of newly launched Solana tokens across multiple launch venues simultaneously; ideal for bots, dashboards, or agents monitoring for new token opportunities, rug-pull detection, or trading signal generation. Prefer over on-chain RPC calls when you need aggregated multi-DEX data without building your own indexer.

## Known failure modes

- Empty items array if no launches occurred in the requested time window
- limit out of range (must be 1-100) returns validation error
- since out of range (must be 1-60 minutes) returns validation error
- Invalid source enum value returns validation error
- 402 payment required if x402 payment header is missing or invalid
- Service downtime on Railway hosting causing 502/503 errors

## How this service works

Real-time Solana token launch detection across Pump.fun, Raydium V4/CPMM, and PumpSwap. Returns launch metadata, liquidity, creator info.

## Output

A JSON object with a count, the source filter used, the lookback window in minutes, and an array of token launch items each containing launch metadata, liquidity details, and creator information.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 50,
   "since": 15,
   "source": "all"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "maximum": 100,
       "minimum": 1,
       "description": "Max items to return (1-100). Default 20."
      },
      "since": {
       "type": "number",
       "maximum": 60,
       "minimum": 1,
       "description": "Minutes back to look (1-60). Default 10."
      },
      "source": {
       "enum": [
        "pumpfun",
        "raydium-v4",
        "raydium-cpmm",
        "pumpswap",
        "all"
       ],
       "type": "string",
       "description": "Filter by launch venue. Use 'all' to include every source."
      }
     }
    }
   },
   "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/oracle-production-d5ba-up-railway-app-4ca11da8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracle-production-d5ba.up.railway.app](https://www.zero.xyz/host/oracle-production-d5ba.up.railway.app/llms.txt)
