# Solana Token Launch Risk Oracle

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

Returns detailed launch metadata plus AI-generated bilingual risk summary (English + Japanese) and a 0-100 risk score for a specific Solana SPL token mint address.

## Facts

- Endpoint: GET https://oracle-production-d5ba.up.railway.app/launches/:mint
- 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/oracle-production-d5ba-up-railway-app-d6b569bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p-OvTiMrf_6IyDKsZgPCL

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-d6b569bf
```

Example prompt: Can you pull the launch details and AI risk score for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want to see the English and Japanese risk summaries and the 0-100 risk score.

## When to prefer this

Use this endpoint when you need a comprehensive risk assessment — including a bilingual AI-generated summary and numeric risk score — for a specific Solana token mint. It is especially valuable for tokens launched on Pump.fun, Raydium, or PumpSwap where rug pull and fraud risk is high. Prefer this over generic blockchain explorers when you need structured, agent-ready risk scoring rather than raw on-chain data.

## Known failure modes

- Invalid or malformed mint address (not valid base58 or wrong length) returns an error
- Mint address not found in launch database returns 404 or empty result
- Token launched on an unsupported DEX/platform returns no data
- Network timeout or Railway service unavailability returns 5xx
- Payment failure or insufficient USDC balance blocks the request (x402 payment required)

## How this service works

Detailed launch info with AI-generated risk summary (English + Japanese) and 0-100 risk score for a specific Solana mint address.

## Output

Returns detailed launch information for the specified Solana mint including AI-generated risk summaries in English and Japanese, a numeric risk score from 0 to 100, liquidity data, creator information, and platform of origin (Pump.fun, Raydium V4/CPMM, or PumpSwap).

## 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",
       "maxLength": 50,
       "minLength": 32,
       "description": "Solana SPL token mint address (base58, 32-50 chars)."
      }
     }
    }
   },
   "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-d6b569bf/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)
