# TravelPulse Travel Budget Estimator

> TravelPulse Travel Budget Estimator is a paid API for AI agents from travelpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns per-category trip cost breakdowns (lodging, food, transport, activities) by budget tier and duration for any destination worldwide.

## Facts

- Endpoint: GET https://travelpulse.theaslangroupllc.com/api/travel/budget
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-travel-budget-estimator-da896d49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rmpibPttGRA3EVkQ-afd_

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-budget-estimator-da896d49
```

Example prompt: Can you give me a full cost breakdown for a 10-day trip to Tokyo, Japan — covering lodging, food, transport, and activities — across budget, mid-range, and luxury tiers?

## When to prefer this

Use this endpoint when a user needs a structured, per-category cost estimate for a trip to any global destination, especially when planning or comparing budget tiers. Prefer this over generic web search when you need machine-readable, structured cost data broken down by lodging, food, transport, and activities.

## Known failure modes

- Unknown or unsupported destination returns an error or empty result
- Missing required parameters (destination or duration) returns a 400-level error
- Very obscure destinations may return low-confidence or approximate estimates
- Network timeout or upstream data unavailability returns a 5xx error

## How this service works

Travel budget estimator and trip cost breakdown for any destination worldwide. Returns per-category costs (lodging, food, transport, activities) by budget tier and duration for travel and budget-travel agents.

## Output

A structured breakdown of estimated trip costs per category (lodging, food, transport, activities) across budget tiers (budget/mid-range/luxury) for the specified destination and duration, including daily and total cost estimates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "destination"
 ],
 "properties": {
  "days": {
   "type": "number",
   "description": "Number of days for total estimate (default: 10)"
  },
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "travelers": {
   "type": "number",
   "description": "Number of travelers"
  },
  "budget_tier": {
   "type": "string",
   "description": "budget | mid_range | comfort | luxury (default: mid_range)"
  },
  "destination": {
   "type": "string",
   "description": "Destination country or city"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-travel-budget-estimator-da896d49/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse.theaslangroupllc.com](https://www.zero.xyz/host/travelpulse.theaslangroupllc.com/llms.txt)
