# Riley Craig x402 Agent Store — Crypto Token Launches Feed

> Riley Craig x402 Agent Store — Crypto Token Launches Feed is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a paginated list of recently launched or boosted crypto tokens across multiple chains, with links to security and market data for each.

## Facts

- Endpoint: GET https://store.agentexchange.work/crypto/launches
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-token-launches-feed-34f2e93c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K3RQU2FykIhQR4_FQbFDI

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-token-launches-feed-34f2e93c
```

Example prompt: Show me the latest 20 boosted token launches on Solana so I can research which ones are worth looking into further.

## When to prefer this

Use this endpoint when you need to discover freshly launched or boosted crypto tokens across one or multiple blockchains, especially when you want structured on-chain launch data with built-in follow-up links for security and market analysis. Prefer over general web search when you need machine-readable token addresses and chain-specific metadata in a single call.

## Known failure modes

- Invalid chain parameter returns empty or error response
- Limit out of range (below 1 or above 30) may return default or error
- Payment not included causes 402 Payment Required response
- No recent launches on the specified chain returns empty items array

## 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 field and an items array. Each item includes the token kind (e.g. 'boosted'), boost score, chain, contract address, and next_calls with ready-made URLs for rug-check and market data lookups on that token.

## 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"
      }
     }
    }
   }
  }
 }
}
```

## More

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