Skip to content

Sightseeing Search
Run in Postman

/api/v1/sightseeing/search   
This service enables users to search for available sightseeing tours and activities based on specific criteria. Users can filter their search results by specifying the desired city and country or geoLocation, allowing for more targeted and relevant recommendations.

Sightseeing Search Request

Tags Attribute Description
city city*
(String)
City name should be mention in this attribute.
country country*
(String)
Country name should be mention in this attribute.
category category
(StringArray)
Category of the desired sightseeing
geoLocation geoLocation
(JsonArray)
Contains the geo location for search
latitude
(Double)
Latitude of the geo location coordinate
longitude
(Double)
Longitude of the geo location coordinate
radius
(String)
Radius for the range
units
(String)
Unit for Radius


By providing the city, country, and category, users can narrow down their search to find relevant activities.

Sightseeing Search Request
1
2
3
4
{
    "city": "Dubai",
    "country": "United Arab Emirates"
}


Sightseeing Search Response

After sending the sightseeing search request Travlinq will give you all the available sightseeing results which are relevant to the particular search criteria.

Tags Attributes Description
meta meta
(JsonObject)
Metadata about the API response.
success
(String)
Response status will be returned. Example: "true".
statusCode
(Boolean)
Response statusCode will be returned. Example: "1".
statusMessage
(String)
Response statusMessage will be returned. Example: "SUCCESS".
commonData commonData
(JsonObject)
This tag contains the common data in the response.
searchKey
(String)
A unique search ID will be returned in the search response.
data data
(JsonArray)
Contains detailed information about the products or offers.
offerId
(String)
Contains the unique id for the specific result
workflowId
(String)
Contains the worflowId for the flow
productName
(String)
The Name of product
productDescription
(String)
Description about the product
location location
(JsonObject)
Contains Geolocation detail
cityName
(String)
Name of the City
countryName
(String)
Name of the Country
latitude
(String)
latitude of the product
longitude
(String)
longitude of the product
productCategories productCategories
(JsonArray)
Contains product categories
category
(String)
Category of the product
languages languages
(StringArray)
Language for the product
durations durations
(JsonArray)
Contains the duration of the product
duration
(String)
Duration of the product
images images
(JsonArray)
List of available images
imagePath
(String)
URL of the image
imageWidth
(Double)
Width of image (if available)
imageHeight
(Double)
Height of Image (If available)
pricingInfo pricingInfo
(JsonObject)
Contains the Pricing Detail for the product
startingFrom
(Double)
The minimum price for the product
netAmount
(Double)
The final/total price for the product
currency
(String)
The Currency for the price
customerAdditionalFareInfo customerAdditionalFareInfo
(JsonObject)
Additional fare information related to customers.
transactionFeeEarned
(Double)
The transaction fee amount.
tdsOnCommission
(Double)
The commission amount on TDS.
commissionEarned
(Double)
The Commission Earned
markupEarned
(Double)
The total markup amount from the pricing rule.
discount
(Double)
The total discount amount from the pricing rule.
vat
(Double)
The VAT received from the pricing model, if applicable.
supplierAdditionalFareInfo supplierAdditionalFareInfo
(JsonObject)
Additional fare information related to customers.
currency
(String)
Supplier Currency
publishedFare
(Double)
Published Fare
plbearned
(Double)
Plb Earned
incentiveEarned
(Double)
Incentive Earned
offeredFare
(Double)
Fare offered by Supplier
tdsOnCommission
(Double)
The commission amount on TDS.
commissionEarned
(Double)
The Commission Earned
tdsOnPlb
(Double)
TDS on plb
tdsOnIncentive
(Double)
TDS on Incentive
serviceFee
(Double)
Service Fee
discount
(Double)
Total discount amount


Sightseeing search response
{
  "meta": {
    "success": true,
    "statusCode": 1,
    "statusMessage": "SUCCESS",
    "actionType": "Sightseeing search",
    "conversationId": "9a91cef4-5df3-40e6-8793-d3a351b35774"
  },
  "commonData": {
    "searchKey": "6a828c73-23a9-41e5-b9d6-e6426d55118c"
  },
  "data": [
    {
      "offerId": "6a828c73-23a9-41e5-b9d6-e6426d55118cXXXXX00000000",
      "productName": "Dubai Red Dune Desert Safari, Camels, Sandboarding & BBQ Options",
      "productDescription": "Escape the city and explore the desert region of Dubai in 4WD vehicle. Take a dune drive across the red sands and experience a scenic sunset on this desert safari tour. Choose from 4-hour program that includes dune bashing, sandboarding and camel ride or the full 7-hour program with the addition of a BBQ dinner and enjoy many other activities at a VIP Bedouin-style desert camp. ",
      "location": {
        "cityName": "Dubai",
        "countryName": "United Arab Emirates",
        "latitude": "25.2644444",
        "longitude": "55.3116667"
      },
      "productCategories": [
        {
          "category": "Outdoor Activities"
        },
        {
          "category": "Tours Sightseeing and Cruises"
        }
      ],
      "durations": [
        {
          "duration": "1 DAYS"
        }
      ],
      "images": [
        {
          "imagePath": "https://media-cdn.tripadvisor.com/media/attractions-splice-spp-720x480/12/73/a8/85.jpg",
          "imageHeight": 768,
          "imageWidth": 1024
        }
      ],
      "pricingInfo": {
        "startingFrom": 176.57,
        "currency": "AED",
        "customerAdditionalFareInfo": {
          "transactionFeeEarned": 8.26,
          "commissionEarned": 0.0,
          "markupEarned": 8.26,
          "discount": 5.21,
          "vat": 0.0,
          "plbearned": 0.0,
          "incentiveEarned": 0.0,
          "tdsOnIncentive": 0.0
        },
        "supplierAdditionalFareInfo": {
          "currency": "USD",
          "discount": 0.0,
          "publishedFare": 0.0,
          "commissionEarned": 0.0,
          "plbearned": 0.0,
          "incentiveEarned": 0.0,
          "offeredFare": 45.0,
          "tdsOnCommission": 0.0,
          "tdsOnPlb": 0.0,
          "tdsOnIncentive": 0.0,
          "serviceFee": 0.0
        }
      }
    }
  ]
}