Top Sights
Description: Shows popular tourist attractions and landmarks for a specific location.
API Response Structure:
{
"location": "Paris, France",
"attractions": [
{
"name": "Eiffel Tower",
"rating": 4.8,
"reviewCount": "140,000",
"type": "Landmark",
"description": "Iconic iron lattice tower",
"image": "https://example.com/eiffel.jpg",
"hours": {
"open": "9:00 AM",
"close": "11:00 PM"
},
"ticketInfo": {
"price": "€26",
"availability": "Available"
}
}
],
"hasMore": true,
"type": "instantAnswers",
"configType": "topSights"
}
Fields:
-
location(string): Geographic location -
attractions(array): List of attractions-
name(string): Attraction name -
rating(number): Average rating -
reviewCount(string): Number of reviews -
type(string): Attraction type -
description(string): Brief description -
image(string): Image URL -
hours(object): Operating hours -
ticketInfo(object): Ticket information
-
-
hasMore(boolean): More attractions available -
type(string): Always "instantAnswers" -
configType(string): Always "topSights"
