Events
Route through Portugal for Afronation when the festival matches the traveler’s dates and interests.
Add a weekly context block synthesized from trending creator posts and reels to your system prompt. Your agent can recommend the places and experiences gaining momentum now, not just the landmarks every model already knows.
Add current trends - events, seasonal windows, and changing travel behavior to every itinerary, without request-time search.
Route through Portugal for Afronation when the festival matches the traveler’s dates and interests.
Recommend the right towns and route through Provence when the lavender fields are in season.
Favor longer stays and fewer stops on the Amalfi Coast when slower coastal travel is gaining momentum.
One API call. One context block.
Start with global travel context or request a segment for a specific audience. Fetch it on your schedule, cache it, and make it available to every itinerary request.
ScopeGlobalQueryWhat travel experiences are gaining momentum among solo travelers?
GET /v1/context/travel?segment=Solo%20Travelconst url = new URL(
"https://gist-api.the-alt.co/v1/context/travel"
);
url.searchParams.set("segment", "Solo Travel");
const context = await fetch(
url,
{ headers: { Authorization: `Bearer ${GIST_API_KEY}` } }
).then((response) => response.json());
const systemPrompt = `
You are a travel-planning assistant.
Use this current context when relevant:
${context.read}
`;Built for the consumer response path
A consumer-facing travel agent needs both relevance and speed. Gist prepares the current layer before the user asks, so your agent does not have to search, filter, and interpret the web while they wait.
Add what’s current to what your model already knows.
Give your travel agent a ready-to-use context layer without changing the experience you already own.