# Riley Craig x402 Agent Store — Crypto Launches Feed

> Riley Craig x402 Agent Store — Crypto Launches Feed is a paid API for AI agents from x402-agent-store.rileycraig14.workers.dev, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns a list of recently launched or boosted crypto tokens across multiple chains, filterable by chain, with links to follow-up security and market data endpoints.

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/crypto/launches
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-launches-feed-bb12b4c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SwGBfUwTWawvteEgrtSza

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 riley-craig-x402-agent-store-crypto-launches-feed-bb12b4c8
```

Example prompt: Show me the 20 most recently boosted token launches across all chains, so I can check which ones look promising — include the rug check and market data links for each.

## When to prefer this

Use this endpoint when an AI agent needs to discover newly launched or actively boosted cryptocurrency tokens across one or many chains, especially when the workflow will chain into rug checks or market data lookups using the provided next_calls URLs. Prefer this over general web search for crypto launches because it returns structured on-chain data with actionable follow-up links, requires no API key, and is pay-per-call via x402.

## Known failure modes

- Invalid chain value returns error or empty results
- limit out of range (below 1 or above 30) may return default or error
- Payment not received — 402 response requiring USDC payment via x402 on Base
- Network or worker timeout returning 5xx
- Empty items array if no recent launches found for specified chain

## How this service works

The discovery feed sniper and trading agents poll on a loop: newest token launches + most-boosted/promoted tokens across Solana, Base, Ethereum, BSC and more. Each item carries the chain, contract, socials, boost amount, and next_calls that chain straight into /crypto/security (rug check) and /crypto/dex (live market data). Top-of-funnel for the whole trading lane.

## Output

A JSON object with a count and an array of token items, each including the token address, chain, boost score, kind (e.g. 'boosted'), and pre-built next_calls URLs pointing to /crypto/security for rug checks and /crypto/dex for market data.

## 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": {
      "chain": {
       "type": "string",
       "description": "optional filter: solana|base|ethereum|bsc|... (default all)"
      },
      "limit": {
       "type": "number",
       "description": "1-30, default 15"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "items": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 15,
  "items": [
   {
    "kind": "boosted",
    "boost": 500,
    "chain": "solana",
    "address": "...pump",
    "next_calls": {
     "rug_check": "/crypto/security?address=...&chain=solana",
     "market_data": "/crypto/dex?q=..."
    }
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-launches-feed-bb12b4c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-store.rileycraig14.workers.dev](https://www.zero.xyz/host/x402-agent-store.rileycraig14.workers.dev/llms.txt)
