https://llmsearch.endpoint.getyourguide.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_model": "getyourguide_activity_search",
"name_for_human": "GetYourGuide",
"description_for_model": "Plugin for exploring activities to do in an city, location or country. Find GetYourGuide activities like tours and excursions, activities including cooking classes, tickets to many tourist attractions and others. Translate all query parameters to English. Always show activity rating. When a location is mentioned, include the location in the query parameters.",
"description_for_human": "Find tours, excursions and other travel activities.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://llmsearch.gygservice.com/openapi.json",
"has_user_authentication": false
},
"logo_url": "https://cdn.getyourguide.com/tf/assets/static/chatgpt/gyg-chatgpt-logo.svg",
"contact_email": "chatgpt-plugin-support@getyourguide.com",
"legal_info_url": "https://www.getyourguide.com/c/legal"
}
https://llmsearch.gygservice.com/openapi.json
{
"components": {
"schemas": {
"Activity": {
"properties": {
"abstract": {
"description": "Activity abstract",
"title": "Abstract",
"type": "string"
},
"attributes": {
"description": "List of attributes for this activity",
"items": {
"type": "string"
},
"title": "Attributes",
"type": "array"
},
"availabilities": {
"description": "Availability of this activity",
"items": {
"$ref": "#/components/schemas/Availability"
},
"title": "Availabilities",
"type": "array"
},
"id": {
"description": "Activity ID",
"title": "Id",
"type": "integer"
},
"photo": {
"description": "Link to the activity photo",
"format": "uri",
"maxLength": 65536,
"minLength": 1,
"title": "Photo",
"type": "string"
},
"reviewStatistics": {
"allOf": [
{
"$ref": "#/components/schemas/SearchReview"
}
],
"description": "Reviews",
"title": "Reviewstatistics"
},
"title": {
"description": "Activity title",
"title": "Title",
"type": "string"
},
"url": {
"description": "Link to the activity page",
"format": "uri",
"maxLength": 65536,
"minLength": 1,
"title": "Url",
"type": "string"
}
},
"required": [
"id",
"title",
"abstract",
"url",
"photo",
"attributes",
"availabilities",
"reviewStatistics"
],
"title": "Activity",
"type": "object"
},
"Availability": {
"properties": {
"minParticipants": {
"title": "Minparticipants",
"type": "number"
},
"nextAvailableDateTime": {
"title": "Nextavailabledatetime",
"type": "string"
}
},
"required": [
"nextAvailableDateTime",
"minParticipants"
],
"title": "Availability",
"type": "object"
},
"HTTPValidationError": {
"properties": {
"detail": {
"items": {
"$ref": "#/components/schemas/ValidationError"
},
"title": "Detail",
"type": "array"
}
},
"title": "HTTPValidationError",
"type": "object"
},
"QueryResponse": {
"properties": {
"results": {
"items": {
"$ref": "#/components/schemas/Activity"
},
"title": "Results",
"type": "array"
},
"seeMore": {
"title": "Seemore",
"type": "string"
}
},
"required": [
"results"
],
"title": "QueryResponse",
"type": "object"
},
"SearchReview": {
"properties": {
"averageRating": {
"default": 0,
"title": "Averagerating",
"type": "number"
},
"quantity": {
"title": "Quantity",
"type": "integer"
},
"rating": {
"title": "Rating",
"type": "number"
},
"totalCount": {
"default": 0,
"title": "Totalcount",
"type": "integer"
}
},
"required": [
"quantity",
"rating"
],
"title": "SearchReview",
"type": "object"
},
"ValidationError": {
"properties": {
"loc": {
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"title": "Location",
"type": "array"
},
"msg": {
"title": "Message",
"type": "string"
},
"type": {
"title": "Error Type",
"type": "string"
}
},
"required": [
"loc",
"msg",
"type"
],
"title": "ValidationError",
"type": "object"
}
}
},
"info": {
"title": "GetYourGuide Activity Service",
"version": "0.1.0"
},
"openapi": "3.0.2",
"paths": {
"/activities": {
"get": {
"description": "Endpoint for finding GetYourGuide Activities",
"operationId": "get_activities_activities_get",
"parameters": [
{
"description": "Short user query in English",
"in": "query",
"name": "query",
"required": false,
"schema": {
"default": "",
"description": "Short user query in English",
"title": "Query",
"type": "string"
}
},
{
"description": "How many results should be skipped",
"in": "query",
"name": "skip",
"required": false,
"schema": {
"default": 0,
"description": "How many results should be skipped",
"title": "Skip",
"type": "integer"
}
},
{
"description": "The amount of activities returned to the user",
"in": "query",
"name": "amount_of_activities",
"required": false,
"schema": {
"default": 4,
"description": "The amount of activities returned to the user",
"title": "Amount Of Activities",
"type": "integer"
}
},
{
"description": "Currency of the User (default USD)",
"in": "query",
"name": "currency",
"required": false,
"schema": {
"default": "USD",
"description": "Currency of the User (default USD)",
"title": "Currency",
"type": "string"
}
},
{
"description": "Name of the location the user is interested in",
"example": "Berlin",
"in": "query",
"name": "location",
"required": false,
"schema": {
"default": "",
"description": "Name of the location the user is interested in",
"title": "Location",
"type": "string"
}
},
{
"description": "The date from which to look for activities",
"example": "2023-08-11",
"in": "query",
"name": "start_date",
"required": false,
"schema": {
"description": "The date from which to look for activities",
"format": "date",
"title": "Start Date",
"type": "string"
}
},
{
"description": "The date up to which to look for activities",
"example": "2023-08-21",
"in": "query",
"name": "end_date",
"required": false,
"schema": {
"description": "The date up to which to look for activities",
"format": "date",
"title": "End Date",
"type": "string"
}
},
{
"description": "Category name",
"in": "query",
"name": "category",
"required": false,
"schema": {
"description": "Category name. Only use one of these: Tours, Sightseeing Walking Tours, Bus & Minivan Tours, Private Car Tours, Segway Tours, Bike Tours, Hop On Hop Offs, Night Tours, Rail Tours, Castle & Palace Tours, Seasonal & Holiday Activities, Christmas Activities, New Year's Activities, Halloween Activities, Photography Tours, Shopping Tours, Neighborhood Tours, TV & Movie Tours, Ghost & Vampire Tours, Music Activities, Interactive Tours & Incentive Events, Culture & History, Architecture Tours, Graffiti & Urban Art, Archaeology, Religious & Spiritual Activities, Meet the Locals, Nature & Adventure, National Parks, Desert Safaris, Quad & ATV Tours, Jeep & 4WD Tours, Safaris & Wildlife Activities, Birdwatching, Air & Helicopter Tours, Airplane tours, Helicopter tours, Balloon Tours, Cruises & Boat Tours, Dolphin & Whale Watching, Sailing Trips & Tours, Duck Tours, Speed & Jet Boat Tours, Activities, Water Sports, Diving, Snorkeling, Kitesurfing, Surfing Lessons, Canoe & Kayak Tours, Fishing Tours, Beach Trips, Swim with Dolphins, Canyoning, River Rafting, Jet Ski, Shark Diving, Parasailing, Outdoor Sports, Hiking, Climbing Experiences, Mountainbiking, Workshops & Classes, Art & Craft Workshops, Driving Experiences, Racing & Dream Cars, Tank Driving, Extreme Sports & Adrenaline, Bungee Jumping, Sky Diving, Paintball, Paragliding, Zipline Adventures, Wellness & Spas, Fitness & Health, Romance & Special Occasions, Dinner Package, City Cards, Culinary & Nightlife, Food & Drink, Wine Tasting & Winery Tours, Food & Gourmet Tours, Whiskey Tours, Cooking Classes, Dinner & Lunch Cruises, Nightlife & Bars, Pub Crawls & Bar Tours, Nightclub Tours, Snow & Winter Sports, Dog Sledding & Husky Tours, Snowmobile Tours, Snowshoe Tours, Sleigh Rides, Entry Tickets, Shows & Musicals, Theater Tours & Tickets, Shows, Musicals, Dinner Shows, Theme Parks & Amusement Parks, Museums & Exhibitions, Zoos & Aquariums, Natural Attractions & National Parks, Concerts & Operas, Rentals, Audio Guides, Scooters & Motorcycles, Ski & Snowboard, Boats & Yachts, Electric Cars, Transfers, Airport Transfers, Port Transfers, Shore excursions, Cablecar Tours, Garden & Park Tours, Literary Activities, Pirate Tours, Factory & Workshop Tours, Comedy Tours, Airboat Tours, Shooting Tours, Cave Tours, Beer Tasting & Brewery Tours, Horse & Carriage Tours, Pedicab & Rickshaw Tours, Day Trips, Valentine's Day, Paddleboarding, Sailing Lessons, Cenote Tours, Camel Riding Tours, Educational Activities, Flight Simulator, Jungle Tours, Hot Springs, Water Parks, Trike Tours, Volcano Activities, Cemetery Tours, Deals & Discounts, Tapas, Flamenco, Sporting Venues, Harry Potter Tours, Seaplane, Papal Audience, Carnival Activities, Communist History, Private Tours, Running, St Patrick’s Day, Churches & Cathedrals, Trabi Safaris, Jazz, Lights Tours, Local language, Second World War, Viewing Points, Wheelchair Accessible, James Bond Tours, Vintage Cars, Chocolate Tours, Solo travelers' tours, Street Food, Sunrise Tours, Tango, Jack the Ripper Tours, Cabaret, Dhow Cruises, Black Cab Tours, Market Tours, Fashion Tours, Coffee Tours, Gondola Tours, UNESCO Sites, Off the Beaten Track, Rainy-Day Activities, Water Taxi, Fado Shows, The Beatles, Macarons, Multi Day Trips, Romantic Activities for Couples, Luxury, Beer bike, Downton Abbey tours, Afternoon Tea, Angels & Demons Tours, Gladiators, Coffee Shop Tours, Favela Tours, Sunset Tours, Puffin Watching, Glacier Exploration, Northern Lights, Island Tours, Escape Rooms, Game of Thrones Tours, Day trips to, Submarine Tours, Ice Cave Tours, Flyboard Activities, Public Transportation Ticket, Cannabis Tours, Luaus, Vodka Tour, Windmills, City Discovery Games, Self-Guided Activities, Celebrities, Small group, Outlander Tours, Lord of the Rings, Local food tours, Samba Dance, GetYourGuide Originals, Eco-certified, VR Activities, Boat Party, Distillery Tours, Fjords, Horse Riding, Manta Ray Tours, Marine Life, Mayan Ruins, Plantation Tours, Pyramid Tours, WiFi & SIM Cards, Stargazing, Swimming with Turtles, Outdoor Activities, Family-friendly Activities, Trolley Tours, Private Cruise Tours, For Adults, Swamp Tours, Seal Watching Tours, Airport Lounge, Underground & Catacombs, Tea ceremonies, Sightseeing cruises, Aquariums, Zoos, Good for Groups, Art experiences, Sightseeing on wheels, Walking Tours, For First-Time Visitors, For Returning Travelers, Water Activities, Guided tours, Truffles, Landmarks & Monuments, Dance classes, New & trending, Unique & unexpected, Outside of the city, Local culture, Recommended guides, Limited time only, Music History, Perfume Workshops, Yoga Classes, Drag Shows, Self-driven tours, Axe Throwing, Summer activities, Spring activities, Autumn activities, Winter activities, Aboriginal culture, Space exploration, Military history, Medieval history, Leonardo da Vinci experiences, Royal experiences, Sightseeing, Travel services, Mystery & Crime experiences, Science & Literature experiences, Other. Do not provide multiple.",
"title": "Category",
"type": "string"
}
},
{
"description": "Upper bound for price of an activity",
"in": "query",
"name": "price_lte",
"required": false,
"schema": {
"description": "Upper bound for price of an activity",
"title": "Price Lte",
"type": "number"
}
},
{
"description": "Lower bound for price of an activity",
"in": "query",
"name": "price_gte",
"required": false,
"schema": {
"default": 0,
"description": "Lower bound for price of an activity",
"title": "Price Gte",
"type": "number"
}
},
{
"description": "Lower bound for time of day when activity is available, formated as HH:MM",
"example": "07:25",
"in": "query",
"name": "start_time",
"required": false,
"schema": {
"default": "00:01",
"description": "Lower bound for time of day when activity is available, formated as HH:MM",
"title": "Start Time",
"type": "string"
}
},
{
"description": "Upper bound for time of day when activity is available, formatted as HH:MM",
"example": "21:53",
"in": "query",
"name": "end_time",
"required": false,
"schema": {
"default": "23:59",
"description": "Upper bound for time of day when activity is available, formatted as HH:MM",
"title": "End Time",
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/QueryResponse"
}
}
},
"description": "Successful Response"
},
"404": {
"description": "No activities found"
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
},
"description": "Validation Error"
}
},
"summary": "Get Activities",
"tags": [
"plugin"
]
}
}
},
"servers": [
{
"url": "https://llmsearch.gygservice.com"
}
]
}
Discover other plugins from the travel category
Expedia
Book international flights & hotels together to save.
0 Comments

Safari
Plugin for planning your safari in Tanzania. You can specify your start and end points.
0 Comments

Turo
Search for the perfect Turo vehicle for your next trip.
0 Comments

GuruWalk
The best free tour guides in the world are here.
0 Comments

GAFFL - Find A Travel Buddy
Find like-minded travel companions, co-plan adventures, share costs, and explore destinations together.
0 Comments

Trip.com
Discover the ultimate travel companion - simplify your flight and hotel bookings. Enjoy your effortless trip!
0 Comments

Travelmyth
Hotel finder plugin. Search based on location, dates, guest count, rooms, and categories for tailored results.
0 Comments

Oz Petrol Prices
Ask for the average daily petrol price for any state or capital city region!
0 Comments

Klook
From local escapes to far flung adventures, find the best experiences, tours, hotels and transport options anywhere.
0 Comments
OwlJourney
Provides lodging and activity suggestions, ensuring an engaging and user-friendly journey.
0 Comments

Aus Surf Report
Get today's surf report for any break throughout Australia!
0 Comments

HDB Car Park
For checking availability of car park lots at various HDB car parks around Singapore.
0 Comments

Supercharge My EV
Find superchargers for non-Tesla vehicles for a specific location.
0 Comments
Kakaku.com/travel
You can search for hotel that match your search criteria from among the many hotels registered on Kakaku.com.
0 Comments

Got2Go
Your next vacation is one conversation away. Literally. Find the perfect stays in the US with Got2Go.
0 Comments
Experiences
Provides activity suggestions, ensuring an engaging and user-friendly travel experiences.
0 Comments

ThemeParkHipster
Find theme park waiting times around the world.
0 Comments

SA Speed Cameras
See if a mobile speed camera or roadwork is on a South Australian road today!
0 Comments

SG Places Beta
Provides information on attractions, F&B outlets, accommodation, tours, shops, and events in Singapore.
0 Comments

BART Real-Time
Getting real-time BART information for a specified origination station and direction.
0 Comments

QEEQ
Our mission is to make journeys more enjoyable and bring better travel experiences to QEEQ with the help of technology.
0 Comments

Ferryhopper
Search for ferries and plan your trip with the assistance of AI and Ferryhopper.
0 Comments

Korea subway route
Korea metro subway route info.
0 Comments
Vio.com
A better deal on your next hotel, motel or accommodation booking.
0 Comments

Trip.com
Discover the ultimate travel companion - simplify your flight and hotel bookings. Enjoy your effortless trip!
0 Comments

JetBook.Click
Your ultimate travel companion: search/book flights at best prices, get info about your destination. Multilang support.
0 Comments

Etihad Airline
Search flights, and answer other related questions of flights.
0 Comments

eSIM Travel Asst
Find eSIM data plans easily! Enter location and eSIM keywords to get apt package suggestions. Ideal for travelers.
0 Comments
Chat Raku Journey
Search for Rakuten services in Japan. You can easily search for products, facilities in travel, and more.
0 Comments

Secretary Kim
Korean weather, subway information! Enjoy a smart life with Secretary Kim.
0 Comments

Supercharger
Awesome Tesla trips: find a route, including supercharger stops. Bonus: chat with the Tesla manual!
0 Comments

staypia
Find your perfect travel destination & hotels. Look for pet-friendly towns in USA, stargazing spots in Europe, and more!
0 Comments

Konkani Translator
Unlock the Beauty of Goa with the Romi Konkani Translator.
0 Comments

Wego
Scan the best flight and hotel deals, or get inspired for your next adventure.
0 Comments

Find a Tour
Find a tour, activity, or experience to do in locations across the world.
0 Comments

Kiwi.com
We hack the system, you fly for less. Book cheap flights other sites simply can't find.
0 Comments

Denison Yachting
Search yachts for sale, charters, new construction, crew placement, and more with Denison Yachting.
0 Comments