# Travel Agent Weather-Aware Plan

> Travel Agent Weather-Aware Plan is a paid API for AI agents from travel-agent.forgemesh.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns weather-aware planning context for a destination or coordinate pair, including outdoor activity fit, weather tradeoffs, transportation exposure, and suggested next actions.

## Facts

- Endpoint: GET https://travel-agent.forgemesh.io/api/weather-aware-plan
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travel-agent-weather-aware-plan-3b580e65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W4l8PeY_LETj-qahEkT7F

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 travel-agent-weather-aware-plan-3b580e65
```

Example prompt: Can you give me a weather-aware planning brief for a sightseeing trip to Rome on Saturday, covering outdoor activity fit, weather tradeoffs, and whether walking versus transit makes more sense given the conditions?

## When to prefer this

Choose this endpoint when you need a composite, weather-contextualized planning brief for a specific destination or coordinate pair on a given date — especially when outdoor fit, transportation exposure, and actionable next steps are all needed together. Prefer this over a raw weather API when you want pre-interpreted travel planning context rather than raw forecast data.

## Known failure modes

- Missing required 'type' or 'method' input fields returns a 400 validation error
- Invalid or unresolvable destination name with no lat/lon fallback may return empty or error data
- Date too far in the future may result in low-confidence or unavailable forecast data
- Invalid coordinate values (out of range lat/lon) may cause a lookup failure
- Malformed transportation_modes string may result in incomplete exposure analysis
- Rate limit or payment failure returns 402 Payment Required

## How this service works

Returns an outdoor-fit rating, weather tradeoffs, and transportation exposure notes for a destination or coordinates, with confidence caveats. Use to decide whether to shift timing or route before a trip.

## Output

A structured planning context object containing outdoor activity fitness assessment, weather tradeoffs for the destination and date, transportation exposure analysis for requested modes, freshness metadata, and a list of suggested next actions — all tailored to the specified destination or lat/lon coordinate pair.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lat": {
       "type": "string"
      },
      "lon": {
       "type": "string"
      },
      "date": {
       "type": "string"
      },
      "plan_type": {
       "type": "string"
      },
      "destination": {
       "type": "string"
      },
      "time_window": {
       "type": "string"
      },
      "transportation_modes": {
       "type": "string"
      },
      "max_distance_or_travel_time": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "category": "weather_aware_planning",
   "conditions": {
    "outdoor_fit": "mixed"
   },
   "confidence": "medium",
   "why_not_high": [
    "Forecasts can shift near departure, especially for rain, wind, heat, and exposed transportation choices."
   ],
   "planning_awareness": "..."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travel-agent-weather-aware-plan-3b580e65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travel-agent.forgemesh.io](https://www.zero.xyz/host/travel-agent.forgemesh.io/llms.txt)
