# CryptoPulse Crypto Spending Guide

> CryptoPulse Crypto Spending 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-14, last successful call 2026-06-12).

Returns country-specific guidance on how to spend crypto, including the best crypto debit cards, merchant acceptance, and gift card options

## Facts

- Endpoint: GET https://cryptopulse-xi-five.vercel.app/api/spend
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-06-12
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-crypto-spending-guide-b45465ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MB1-kwZYjUB9sjjs_P6ua

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-spending-guide-b45465ba
```

Example prompt: What are the best crypto debit cards, merchant acceptance options, and gift card choices for spending my crypto in Canada?

## When to prefer this

Use this endpoint when a user wants practical, country-specific advice on how to spend or use crypto in their daily life — covering debit cards, direct merchant acceptance, and gift card workarounds. Prefer this over generic crypto exchange comparison endpoints when the goal is spending rather than buying/selling crypto.

## Known failure modes

- Unsupported or unrecognized country code returns empty or error response
- Country with minimal crypto adoption returns sparse results
- Service outage on the Vercel deployment returns 5xx error
- Payment of 0.1 USDC not processed correctly via x402 results in 402 Payment Required

## 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 country-specific guide covering recommended crypto debit cards (with pros/cons), which merchants accept crypto directly, and gift card platforms that let you convert crypto to usable purchasing power in that country.

## Example request

```json
{
 "country": "US",
 "use_case": "daily spending"
}
```

## 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 | EU | AU | SG | CA | AE | BR | IN | JP | KR"
      },
      "use_case": {
       "type": "string",
       "description": "everyday-purchases | travel | online-shopping | bills | remittances"
      }
     }
    }
   },
   "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": {
  "top_card": "Coinbase Card",
  "cashback_crypto_pct": 4,
  "stablecoin_spending": "USDC on Base — instant, near-zero fees",
  "supported_countries": 40,
  "no_foreign_transaction_fee": true
 }
}
```

## More

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