# CortexCloud Coins Search

> CortexCloud Coins Search is a paid API for AI agents from api.cortexcloud.org, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Search for cryptocurrency coins by name, symbol, or keyword via an x402 pay-per-call API

## Facts

- Endpoint: GET https://api.cortexcloud.org/x402/v1/data/coins/search
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cortexcloud-coins-search-51304d6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lbyqjy96dpp9YBd-LUZHL

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 cortexcloud-coins-search-51304d6a
```

Example prompt: Search for coins matching 'ethereum' and give me a list of results including their symbols and IDs.

## When to prefer this

Use this endpoint when you need to resolve a coin name, partial ticker, or keyword into a structured coin record (including its canonical ID) before performing further lookups. Ideal for agent workflows that need to disambiguate user-provided coin names before querying prices or metadata. Prefer this over manually guessing coin IDs or symbols.

## Known failure modes

- No coins found matching the query — returns empty results list
- Ambiguous or misspelled query returns unrelated coins
- Payment failure via x402 results in 402 response before data is returned
- Rate limiting or service unavailability returns 5xx error
- Overly broad search query returns too many results with no prioritization

## How this service works

OpenAI-compatible AI and data API for agents. Pay per call in USDC on Base via x402 — no API keys, no subscriptions, no lock-in.

## Output

A list of matching cryptocurrency coins, each including their name, symbol, and unique coin ID that can be used for further data lookups or price queries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "format": "application/json",
 "example": {
  "coins": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cortexcloud-coins-search-51304d6a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cortexcloud.org](https://www.zero.xyz/host/api.cortexcloud.org/llms.txt)
