# TravelPulse Travel Translator

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

Translates text or phrases into a target language with travel-context nuance, phonetic pronunciation guides, and cultural notes relevant to travelers.

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/translate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-travel-translator-c84aa356
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Z4FHqjZ0W6yQV6aIt3WT

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-travel-translator-c84aa356
```

Example prompt: Can you translate 'where is the nearest pharmacy?' into Thai for my trip to Bangkok, with pronunciation and any cultural notes I should know as a traveler?

## When to prefer this

Choose this endpoint when you need travel-specific translation that goes beyond raw word-for-word conversion — especially when pronunciation guidance and cultural context matter for a traveler interacting with locals. Ideal for building trip preparation tools, travel assistants, or phrasebook features where accuracy and cultural sensitivity in a travel setting are priorities.

## Known failure modes

- Unsupported language pair returns an error
- Ambiguous or too-long input text may produce incomplete translations
- Missing required parameters (text or target language) returns a 400-level error
- Payment not processed results in 402 Payment Required
- Highly idiomatic or slang input may lose meaning in translation

## How this service works

Travel translator and travel-phrase translation into any language worldwide. Returns natural travel-context translation with pronunciation and cultural usage notes for travel and traveler agents.

## Output

Returns the translated phrase in the target language, a phonetic pronunciation guide, and cultural or contextual notes relevant to travelers — such as tone, formality level, regional variations, or usage tips specific to the travel scenario.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "text"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "Target language, e.g. Japanese, French"
  },
  "from": {
   "type": "string",
   "description": "Source language (default: English)"
  },
  "lang": {
   "type": "string",
   "description": "Interface language for UI text (default en)"
  },
  "text": {
   "type": "string",
   "description": "Phrase to translate"
  },
  "action": {
   "type": "string",
   "description": "phrasebook | translate (default: phrasebook)"
  },
  "context": {
   "type": "string",
   "description": "Travel context, e.g. dining, transport, hotel"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "original": "Where is the nearest train station?",
  "formality": "polite",
  "to_language": "Japanese",
  "translation": "最寄りの電車の駅はどこですか？",
  "context_note": "This is the polite/standard form appropriate for asking strangers.",
  "romanization": "Moyori no densha no eki wa doko desu ka?",
  "from_language": "English",
  "helpful_gesture": "If confused after asking, showing them your phone with a map is universally understood.",
  "pronunciation_tip": "Speak slowly and clearly. 'Moyori' rhymes with 'story'.",
  "alternative_phrases": [
   {
    "phrase": "駅はどこ？",
    "use_when": "Among friends, very casual",
    "romanization": "Eki wa doko?"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-travel-translator-c84aa356/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)
