# x402engine Crypto Search API

> x402engine Crypto Search API is a paid API for AI agents from x402engine.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Searches for cryptocurrency information by coin name or symbol, returning relevant coin data

## Facts

- Endpoint: GET https://x402engine.app/api/crypto/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402engine-crypto-search-api-e0044aef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gMjozxHazd3f_ItyIOChJ

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 x402engine-crypto-search-api-e0044aef
```

Example prompt: Search for information about the coin with the symbol 'SOL' — I want to know what it is and get its key details.

## When to prefer this

Use this endpoint when you need to search or identify a cryptocurrency by name or symbol and want pay-per-call micropayment pricing with no subscription. Prefer this over free public APIs when building autonomous AI agents that need metered, on-chain payment access to crypto data.

## Known failure modes

- Empty or ambiguous query returns no results or irrelevant coins
- Unknown coin name or symbol returns empty result set
- Payment failure (402) if USDC/USDm balance is insufficient
- Rate limiting or service unavailability returns 5xx error
- Misspelled coin name may return no matches

## How this service works

Search for a coin by name or symbol to get its CoinGecko ID

## Output

Returns cryptocurrency information matching the search query, including coin name, symbol, and relevant metadata for coins matching the provided name or symbol string.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "example": "bitcoin",
       "description": "Search query (coin name or symbol)"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402engine-crypto-search-api-e0044aef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402engine.app](https://www.zero.xyz/host/x402engine.app/llms.txt)
