# ForgeMesh Creator Travel Experience Brief

> ForgeMesh Creator Travel Experience Brief is a paid API for AI agents from travel-agent.forgemesh.io, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Generates a creator-focused travel experience brief including story arc, shot list, local context leads, movement friction notes, weather backup thinking, and emerging signal hooks for a given destination.

## Facts

- Endpoint: GET https://travel-agent.forgemesh.io/api/creator-experiences
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-creator-travel-experience-brief-310f8ecb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EG1-7OGAVuBKtvZIi01yR

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-creator-travel-experience-brief-310f8ecb
```

Example prompt: Can you put together a creator travel brief for a 5-day trip to Lisbon in autumn — I'm doing short-form video content for a millennial audience with a street food and architecture theme, mid-range budget, and I'd love emerging local signals to make the content feel fresh?

## When to prefer this

Choose this endpoint when a travel creator, filmmaker, or content strategist needs a ready-to-use creative brief — not just logistics — that includes narrative structure, visual shot guidance, cultural context, and contingency thinking for a specific destination. Prefer this over generic travel planning endpoints when the output must be creator-ready and content-style-aware.

## Known failure modes

- Missing required 'input' object with type and method fields returns a 400 validation error
- Invalid or unsupported query parameter values may produce generic or degraded output
- Destination not recognized or ambiguous coordinates may result in low-quality or placeholder brief content
- Payment not included or x402 payment fails results in 402 Payment Required response
- Overly broad or missing theme/audience parameters may reduce specificity of the shot list and story arc

## How this service works

Returns a story arc and shot list for a destination, plus emerging-local-signal status, with confidence caveats. Use to script travel video or social content around a theme and audience.

## Output

Returns a structured creator travel brief containing a narrative story arc, a shot list tailored to the content style and destination, local context leads (notable locals, underground spots, cultural nuance), movement friction notes (logistics, access challenges), weather backup thinking (alternative plans if conditions shift), and emerging local signal hooks for timely or trending angles.

## 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"
      },
      "theme": {
       "type": "string"
      },
      "budget": {
       "type": "string"
      },
      "season": {
       "type": "string"
      },
      "audience": {
       "type": "string"
      },
      "destination": {
       "type": "string"
      },
      "trip_length": {
       "type": "string"
      },
      "content_style": {
       "type": "string"
      },
      "emerging_local_signals": {
       "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": {
   "story": {
    "shot_list": [],
    "story_arc": []
   },
   "category": "creator_experiences",
   "confidence": "medium",
   "why_not_high": [
    "Emerging local signals are request hooks/planned enrichment, not confirmed new-opening evidence yet."
   ],
   "emerging_local_signals": {
    "status": "planned_enrichment"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-creator-travel-experience-brief-310f8ecb/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)
