# ForgeMesh Day-Trip Planner

> ForgeMesh Day-Trip Planner is a paid API for AI agents from travel-agent.forgemesh.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Generates a structured day-trip planning brief for a destination or coordinate pair, including local context leads, themed experience candidates, source freshness, tradeoffs, and next actions.

## Facts

- Endpoint: GET https://travel-agent.forgemesh.io/api/day-trip-plan
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-day-trip-planner-e2257c0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K8qnxoFdGbxJyDQB2n_ZV

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 forgemesh-day-trip-planner-e2257c0a
```

Example prompt: Can you put together a day-trip plan for Portland, Maine on Saturday July 19th — I'm starting from Boston, interested in seafood and local history, with a budget of around $100, open to driving up to 2.5 hours, and looking for a mix of outdoor and cultural experiences?

## When to prefer this

Use this endpoint when an agent needs a comprehensive, disposable day-trip planning brief for a specific destination or coordinate pair — especially when themed experience discovery, source freshness awareness, and actionable next steps are needed in a single call. Prefer over generic search when the user wants curated itinerary structure rather than raw search results, and when budget, transportation mode, and interest filtering are important inputs.

## Known failure modes

- Missing required 'destination' or lat/lon coordinate pair returns a 400 error
- Invalid date format results in a parsing error or fallback to today's date
- Overly broad radius with no interests may return generic or low-confidence candidates
- Payment not processed or x402 authentication failure returns 402 Payment Required
- Destination with sparse data coverage may return fewer local context leads or lower freshness scores

## How this service works

Day-trip planning awareness with disposable local context leads, themed experience candidates, source freshness, tradeoffs, and next actions for a destination or coordinate pair.

## Output

A structured day-trip planning brief containing themed experience candidates, local context leads with freshness signals, budget and tradeoff considerations, transportation strategy, and recommended next actions for the specified destination or coordinates.

## 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"
      },
      "theme": {
       "type": "string"
      },
      "budget": {
       "type": "string"
      },
      "origin": {
       "type": "string"
      },
      "interests": {
       "type": "string"
      },
      "destination": {
       "type": "string"
      },
      "time_window": {
       "type": "string"
      },
      "radius_miles": {
       "type": "string"
      },
      "content_style": {
       "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": "day_trip",
   "confidence": "medium",
   "why_not_high": [
    "Local context leads are disposable planning candidates; hours, access, fees, accessibility, fit, and closures still need verification."
   ],
   "local_context": {
    "breweries": [],
    "google_places": []
   },
   "planning_awareness": "..."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-day-trip-planner-e2257c0a/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)
