GetYourGuide Integration Test
Test the priority venue list with GetYourGuide recommendations
Test Configuration
🔗 GetYourGuide Integration Features
Priority Features:
- • GetYourGuide results shown first
- • "RECOMMENDED" badges on all listings
- • Partner ID (5QQHAHP) in all links
- • 15-minute edge caching
Technical Details:
- • Parallel API fetching
- • Instant UI loading
- • Deep link fallbacks
- • Tailwind CSS styling
Testing:Food Tour in Lisbon
Where to do this activity
Searching for venues...
1
Analyze2
Discover3
LoadFinding the best food tour spots in Lisbon
📋 API Implementation
GetYourGuide API Route:
GET /api/getyourguide?city=Lisbon&activity=Food Tour&limit=6Example Partner Link:
https://www.getyourguide.com/s/?partner_id=5QQHAHP&lc=lisbon-l126&q=Food%20TourResponse Structure:
{
"success": true,
"data": [
{
"id": "gyg_123",
"title": "Amazing Food Tour",
"booking_url": "https://www.getyourguide.com/activity/123?partner_id=5QQHAHP",
"price": {"amount": 45, "currency": "EUR"},
"rating": {"score": 4.8, "count": 324},
"recommended": true,
"source": "getyourguide"
}
],
"partner_id": "5QQHAHP",
"response_time_ms": 150
}