# CryptoPulse Crypto-Friendly Banking Guide

> CryptoPulse Crypto-Friendly Banking Guide 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-15).

Returns a country-specific guide to banks, neobanks, and crypto on/off ramps that are compatible with cryptocurrency users

## Facts

- Endpoint: GET https://cryptopulse-xi-five.vercel.app/api/banking
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-crypto-friendly-banking-guide-51d49aa7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_koOrQRWji8DOwkowM4CDS

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-crypto-friendly-banking-guide-51d49aa7
```

Example prompt: What banks and neobanks in the United States are crypto-friendly and won't block my transactions, and what on/off ramps should I use to move money between crypto and my bank account?

## When to prefer this

Use this endpoint when a user needs to find banks or neobanks that are compatible with crypto activity in a specific country, or when looking for reliable fiat-to-crypto on-ramps and crypto-to-fiat off-ramps by jurisdiction. Prefer this over exchange comparison endpoints when the user's primary concern is their banking relationship rather than trading venue selection.

## Known failure modes

- Unsupported or unrecognized country returns empty or generic results
- Country with no known crypto-friendly banks returns limited guidance
- Stale data if banking regulations have recently changed in the target country
- Missing country parameter may return a default or error response

## How this service works

Practical crypto intelligence — DeFi yield and strategy, exchange comparisons, security frameworks, tax guidance, and onboarding for humans and their agents.

## Output

A structured guide listing crypto-compatible banks, neobanks, and on/off ramp services for the specified country, including notes on which institutions are most permissive with crypto activity and recommended methods for converting between fiat and cryptocurrency.

## 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 | CH | BR | IN"
      },
      "profile": {
       "type": "string",
       "description": "personal | business | trader | high-volume"
      }
     }
    }
   },
   "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": {
  "avoid": [
   "Chase (debanks crypto businesses)"
  ],
  "top_banks": [
   {
    "name": "Mercury",
    "country": "US",
    "features": [
     "No fees",
     "USDC integration"
    ],
    "crypto_friendly": true
   },
   {
    "name": "Revolut",
    "country": "UK/EU",
    "features": [
     "Buy/sell in-app",
     "Crypto transfer"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptopulse-crypto-friendly-banking-guide-51d49aa7/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)
