# TravelPulse Currency Guide

> TravelPulse Currency Guide is a paid API for AI agents from travelpulse-nu.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns destination-specific currency exchange strategy, no-fee card recommendations, and cash-vs-card guidance for travelers.

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/currency
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-currency-guide-78a7e489
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FqL1_m0HVvkpFuEX91DLs

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 travelpulse-currency-guide-78a7e489
```

Example prompt: I'm heading to Thailand next month — what's the best currency strategy, should I bring cash or rely on cards, and are there any no-fee cards you'd recommend for spending there?

## When to prefer this

Use this endpoint when a traveler needs actionable, destination-specific money and currency advice — especially around card vs. cash decisions, no-fee card recommendations, and exchange strategies — rather than live exchange rate lookups or currency conversion calculations.

## Known failure modes

- Unsupported or ambiguous destination returns an error or empty guidance
- Missing destination parameter causes a 400 bad request
- Service unavailability returns 5xx error
- Payment not processed results in 402 Payment Required

## How this service works

Travel currency exchange strategy and money guide for any destination worldwide. Returns exchange tips, no-foreign-fee cards, ATM advice, and cash-vs-card guidance for travel and traveler agents.

## Output

A structured guide covering the recommended exchange strategy for the destination, which no-fee credit or debit cards to use, ATM usage tips, and whether cash or card is preferable for that specific location.

## 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",
     "required": [
      "destination"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language"
      },
      "destination": {
       "type": "string",
       "description": "Destination country or city"
      },
      "home_currency": {
       "type": "string",
       "description": "Home currency (e.g. USD, EUR, GBP) — default: USD"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-currency-guide-78a7e489/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse-nu.vercel.app](https://www.zero.xyz/host/travelpulse-nu.vercel.app/llms.txt)
