# CryptoPulse Exchange Comparison

> CryptoPulse Exchange Comparison is a paid API for AI agents from cryptopulse-xi-five.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Finds and compares the best cryptocurrency exchanges for a user's country, experience level, and priorities with full fee and security analysis

## Facts

- Endpoint: GET https://cryptopulse-xi-five.vercel.app/api/exchange
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-exchange-comparison-13f1ea44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UXLCizbydlO0b8nFijveZ

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 cryptopulse-exchange-comparison-13f1ea44
```

Example prompt: I'm a beginner in Canada looking to buy crypto — can you use CryptoPulse to compare exchanges and tell me which one has the best fees and security for my situation?

## When to prefer this

Use this endpoint when a user needs personalized crypto exchange recommendations filtered by their geographic location, experience level, and specific priorities like low fees or high security — especially when a simple list is insufficient and comparative fee/security analysis is needed

## Known failure modes

- Unsupported country returns no results or generic fallback
- Invalid or missing priority parameter causes incomplete comparison
- Experience level not recognized leads to generic recommendations
- API timeout if exchange data sources are slow to respond
- No exchanges available for highly restricted jurisdictions

## How this service works

Best crypto exchange for your country, priority and experience level — full fee and security analysis. For crypto and investing agents.

## Output

A ranked list of cryptocurrency exchanges suited to the user's country, priority (e.g. fees, security, ease of use), and experience level, including detailed fee structures and security analysis for each exchange

## Example request

```json
{
 "country": "US",
 "tax_year": "2024",
 "activities": "hold,trade"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string",
       "description": "US | UK | DE | SG | AU | CA | AE | BR | IN | JP | KR"
      },
      "priority": {
       "type": "string",
       "description": "fees | security | selection | derivatives | fiat-on-ramp | staking"
      },
      "experience": {
       "type": "string",
       "description": "beginner | intermediate | advanced | professional"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "maker_fee": 0.4,
  "regulated": true,
  "runner_up": "Kraken",
  "taker_fee": 0.6,
  "recommended": "Coinbase",
  "coins_listed": 240,
  "cold_storage_pct": 98
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptopulse-exchange-comparison-13f1ea44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse-xi-five.vercel.app](https://www.zero.xyz/host/cryptopulse-xi-five.vercel.app/llms.txt)
