# x402 Catalyst Protocol Search

> x402 Catalyst Protocol Search is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Search for crypto protocols with tracked token-unlock schedules by name substring, returning slugs usable with the unlocks/catalysts endpoints.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/catalysts/search
- 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/x402-catalyst-protocol-search-f3d59977
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x329bkJC-RlbvdiJJnqsO

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 x402-catalyst-protocol-search-f3d59977 -d '<json body>'
```

Example prompt: Search for crypto protocols with tracked token-unlock schedules whose names contain 'arb' — I need the slug so I can look up their unlock calendar.

## When to prefer this

Use this endpoint when you know the name (or partial name) of a crypto protocol and need to discover the correct slug to pass to the catalysts/unlocks endpoint. This is a prerequisite search step before fetching actual token-unlock schedule data. Prefer this over guessing slugs directly.

## Known failure modes

- Empty results if no protocol name matches the substring query
- No results returned for very short or ambiguous query strings
- Rate limit or payment failure if USDC payment of $0.02 is not provided via x402 protocol
- Malformed request if query field is missing from request body
- Limit exceeding 100 may be rejected or capped

## How this service works

Find protocols that have tracked token-unlock schedules, by name substring. Send { query }. Use the returned slug with catalysts/unlocks.

## Output

A list of matching protocols (up to the specified limit, default 20) with their names and slugs that can be passed to the catalysts/unlocks endpoint to retrieve full token-unlock schedule data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results, default 20 (max 100)"
  },
  "query": {
   "type": "string",
   "description": "Name substring, e.g. \"arb\""
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-catalyst-protocol-search-f3d59977/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
