# agentdatum.com Travel Assistant (Weather + AQI + Exchange Rate + Holidays)

> agentdatum.com Travel Assistant (Weather + AQI + Exchange Rate + Holidays) is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a bundled travel info snapshot combining weather conditions, air quality index (AQI), currency exchange rates, and public holiday data for a destination.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/life/travel-assistant
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-com-travel-assistant-weather-aqi-exchange-rate-holidays-4e4a288e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NgR5jek8Dm9TmXDb9swB5

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 agentdatum-com-travel-assistant-weather-aqi-exchange-rate-holidays-4e4a288e
```

Example prompt: What's the weather, air quality, exchange rate, and any public holidays I should know about for my trip to Tokyo this week?

## When to prefer this

Choose this endpoint when you need a single-call travel intelligence bundle covering weather, air quality, exchange rates, and holiday calendars together — saving multiple separate API calls. Ideal for travel planning agents, itinerary builders, or any workflow where destination context across multiple dimensions is needed cheaply at $0.01 per call.

## Known failure modes

- Unsupported destination or country code returns empty or error response
- Missing or ambiguous query parameters (e.g. no city specified) may result in 400 error
- Currency pair not supported may return null exchange rate
- Public holiday data unavailable for some countries or dates
- Payment not processed correctly via x402 protocol returns 402
- Stale or cached data if external sources are temporarily unavailable

## How this service works

出行助手：天气+AQI+汇率+节假日

## Output

A bundled JSON response containing current or forecast weather (temperature, conditions), air quality index (AQI level and category), currency exchange rate for the relevant pair, and public holiday information for the destination country and date range.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdatum-com-travel-assistant-weather-aqi-exchange-rate-holidays-4e4a288e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
