Attraction minRate API

This will return the minimum rate for all the attractions. You can use it if you are displaying minimum rate in any of your listing page

Attraction detail API

GET /api/v1/attraction/min-rate

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Access token>

Accept-Encoding

gzip

Response

{
"success": true,
    "data": {
        "totalAttractions": 92,
        "attractions": [
            {
                "attractionId": 120002,
                "title": "Gyrocopter Flight Dubai",
                "adultLowPrice": 50,
                "childLowPrice": 42
            },
            {
                "attractionId": 120003,
                "title": "Wild Wadi Waterpark Dubai",
                "adultLowPrice": 85,
                "childLowPrice": 85
            },
            {
                "attractionId": 120004,
                "title": "The Yellow Boat",
                "adultLowPrice": 95,
                "childLowPrice": 80
            },
            {
                "attractionId": 120005,
                "title": "AYA Universe Dubai",
                "adultLowPrice": 205,
                "childLowPrice": 205
            },
            {
                "attractionId": 120006,
                "title": "Louvre Museum",
                "adultLowPrice": 145,
                "childLowPrice": 135
            }
            ]
        }
    }

Last updated