Attraction detail API

Returns all the details associated to a single Attraction or a group of Attractions. This is an optional step incase if you want full data of the attraction.

Attraction detail API

POST /api/v1/attraction/details

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Request Body

Name
Type
Sample body

attractionIds

string

"attractionIds":[120146, 120147]

(max 10 nos)

Response

{
    "success": true,
    "data": {
        "attractions": [
            {
                "attractionId": 120109,
                "title": "The Dubai Frame",
                "attractionType": "ticket",
                "durationType": "hours",
                "duration": 2,
                "longitude": null,
                "latitude": null,
                "cancellationType": "nonRefundable"
            },
            {
                "attractionId": 120125,
                "title": "Dhow Cruise Creek",
                "attractionType": "booking",
                "durationType": "hours",
                "duration": 2,
                "longitude": null,
                "latitude": null,
                "cancellationType": "nonRefundable"
            }
        ]
    }
}

Last updated