Attraction List API

Provides details on the attraction currently available in the TCTT portfolio. This information includes key data for all the existing attraction in the system.

API endpoint

GET /api/v1/attraction/list?page=1

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Query Params

Name
Type
Description

page

string

Pagination (Page 1 ⇒ Data 1 to 100, Page 2 ⇒ Data 100 to 200)

Response

 {
    "success": true,
    "data": {
        "totalAttractions": 92,
        "attractions": [
            {
                "attractionId": 120109,
                "title": "The Dubai Frame",
                "attractionType": "ticket",
                "durationType": "hours",
                "duration": 2,
                "longitude": null,
                "latitude": null,
                "cancellationType": "nonRefundable",
                "adultLowPrice": 50,
                "childLowPrice": 50
            },
            {
                "attractionId": 120125,
                "title": "Dhow Cruise Creek",
                "attractionType": "booking",
                "durationType": "hours",
                "duration": 2,
                "longitude": "55.1983° E",
                "latitude": "25.1172° N",
                "cancellationType": "nonRefundable",
                "adultLowPrice": 80,
                "childLowPrice": 80
            },
            {
                "attractionId": 120124,
                "title": "Dubai Opera House",
                "attractionType": "booking",
                "durationType": "hours",
                "duration": 1,
                "longitude": "57.1983° E",
                "latitude": "23.1172° N",
                "cancellationType": "nonRefundable",
                "adultLowPrice": 200,
                "childLowPrice": 180
            },
            {
                "attractionId": 120123,
                "title": "Dubai Ice Rink",
                "attractionType": "booking",
                "durationType": "hours",
                "duration": 1,
                "longitude": "56.1983° E",
                "latitude": "27.1172° N",
                "cancellationType": "nonRefundable",
                "adultLowPrice": 83,
                "childLowPrice": 54
            },
            {
                "attractionId": 120122,
                "title": "Musandam Dibba Tour Dubai",
                "attractionType": "booking",
                "durationType": "days",
                "duration": 1,
                "longitude": "58.1983° E",
                "latitude": "24.1172° N",
                "cancellationType": "nonRefundable",
                "adultLowPrice": 100,
                "childLowPrice": 95
            }
            ]
        }            
}

Last updated