DragonPass API Developer Platform
v2
  • v2
  • v1
HomepageOfficial SiteContact Us
HomepageOfficial SiteContact Us
API Version
v2
  • v2
  • v1
  1. Search for Resources
  • Implementation Guide
    • DragonPass Modules
    • Get Started
    • Our API Solution
  • Development Guide
    • Response Format
    • Error Codes
    • Multiple Language Support and Fallback
    • UI Design Guidelines
    • Authentication
    • Sandbox Order Simulation
  • DragonPass API Push Event
    • Instructions
    • Lounge/Dining Walk-in Redemption Event
    • Prebooking Order Status Change Event
    • Resource Update Push Service
  • Using the API
    • Search for Resources
      • Search for Resources
      • Check Prebooking Resource & Option Availability
      • Pricing Query
      • Image Parameters
    • Order Lifecycle
      • Walk-in & Prebooking Order
      • Order Status Enumeration
    • E-pass
      • Querying E-pass Usage Orders and Details
      • Issuing, Querying, and Cancelling an E-pass
      • Utilizing The E-pass
        • Lounge
        • Fast Track
        • Dining
        • Fitness
        • eSIM
        • Cross Module
    • Membership
      • Manage Memberships & Entitlements
      • Querying Membership Usage Orders and Details
      • Utilizing DragonPass Membership
        • Lounge
        • Fast Track
        • Dining
        • Fitness
        • eSIM
    • User
      • User Management
  • Release Notes
    • 2026
    • 2025
  • Migration Guide
    • From V1 to V2
  • API Reference
    • Authentication
      • Generate Access Token
    • User Management
      • User Creation
      • Update User Information
      • Retrieve User Information
      • Retrieve User E-passes List
      • Retrieve User Memberships List
      • Delete A User
    • Search
      • Retrieve Available Modules by Location
      • Aggregated Search by Keyword
    • Transport Hubs
      • Retrieve Transport Hub
      • Retrieve Transport Hub Details
    • Resources
      • Retrieve Resource List
        • Retrieve Resources List
      • Search For Resources
        • Retrieve Resource Details
        • List Updated Resources
      • Check Resource Availability
        • Check Prebooking Resource Availability
        • Check Prebooking Option Availability
      • Fitness
        • Retrieve Fitness Resources Schedule
        • Retrieve Fitness Resource Option Details
      • eSIM
        • Retrieve eSIM Resouces Options
        • Retrieve eSIM Resource Option Details
      • Pricing
        • Retrieve Resource Pricing Information
        • Retrieve Prebooking Option Pricing Information
    • Entitlement Management
      • Update Membership Entitlements
      • Retrieve Membership Entitlement Information
    • Membership Management
      • Membership Registration
      • Update A Membership
      • Retrieve Membership Information
      • Generate Membership Dynamic QR Codes
      • Change Membership Program(Upgrade/Downgrade)
    • Orders Management
      • Preview Orders
        • Membership
          • Preview Membership Prebooking Order
      • Create Orders
        • E-pass
          • Issue An E-pass
            • Create E-pass Order
          • Lounge Prebooking
            • Create E-pass Prebooking Order - Lounge
            • Create E-pass with Prebooking Order - Lounge
          • Fast Track
            • Create E-pass Prebooking Order - Fast Track
            • Create E-pass with Prebooking Order - Fast Track
          • Fitness
            • Create E-pass Prebooking Order - Fitness
            • Create E-pass with Prebooking Order - Fitness
          • eSIM
            • Create E-pass Prebooking Order - eSIM
            • Create E-pass with Prebooking Order - eSIM
            • Top up eSIM data package - E-pass
        • Membership
          • Create Membership Prebooking Order - Lounge
          • Create Membership Prebooking Order - Fast Track
          • Create Membership Prebooking Order - Fitness
          • Create Membership Prebooking Order - eSIM
          • Top up eSIM data package - Membership
      • Retrieve Order List
        • Retrieve E-pass Order List
        • Retrieve Membership Order List
      • Cancel Orders
        • Cancel an Order
      • Retrieve Order Details
        • E-pass
          • Retrieve E-pass Details
          • Retrieve E-pass Usage Order Details
        • Membership
          • Retrieve Membership Usage Order Details
      • Module Specific APIs
        • Fitness
          • Fitness Order Check-In
        • eSIM
          • Retrieve eSIM Order Live Extended Details
          • Check eSIM Top-up Availability
          • Retrieve eSIM Data Packages
    • [Sandbox Only] Simulation
      • Lounge
        • Simulate Lounge Redemption - Walk in
        • Simulate Lounge Redemption - Prebooking
        • Simulate Lounge Order Cancellation
      • Fast Track
        • Simulate Fast Track Redemption - Prebooking
        • Simulate Fast Track Order Cancellation
    • Push Event Recovery
      • Push Event Recovery
  • Our Team
  1. Search for Resources

Pricing Query

Overview#

DragonPass provides a set of Pricing Query APIs that allow clients to retrieve pricing information at both the resource level and the option level.
The current pricing APIs support only a single settlement price model. Support for additional settlement models will be added soon.
All returned prices are based on the contractually agreed settlement prices between DragonPass and the client. Clients have full flexibility to determine how these prices are displayed to their end users within your own applications.

Resource-Level Pricing Query#

→ /resources/prices
This endpoint applies to modules where the price is configured at the resource level:
Lounge
Fast Track
Set Meal
Coupon
Please note that when performing a batch query, if some resources are not included in the client’s authorized price list, those resources will not be returned in the response.
Request
Retrieve Resource Pricing Information - Request

{
    "module": 1,
    "resources": [
        "N00001"
    ],
    "pageNumber": 1,
    "pageSize": 10
}
Response
Retrieve Resource Pricing Information - Response

{
    "code": 0,
    "data": {
        "pagination": {
            "pageSize": 10,
            "pageNumber": 1,
            "totalNumber": 1
        },
        "resources": [
            {
                "resourceId": "N00001",
                "resourceName": "Manchester Airport Lounge",
                "currency": "USD",
                "lastUpdatedTime": "2025-05-01T10:00:00+00:00",
                "pricingMode": 1,
                "pricing": {
                    "basePrice": 50,
                    "prebookingFee": 5
                }
            }
        ]
    }
}

Option-Level Static Pricing Query#

→ resources/options/prices
This endpoint applies to modules where the price is defined at the option level, not at the resource level, and the returned prices are static and do not change in real time:
eSIM
Please note that when performing a batch query, if some options are not included in the client’s authorized price list, those options will not be returned in the response.
Request
Retrieve Prebooking Option Pricing Information - Request

{
    "module": 1,
    "resourceId": "E00001",
    "options": [
        "E00001-02"
    ],
    "pageNumber": 1,
    "pageSize": 10
}
Response
Retrieve Prebooking Option Pricing Information - Response

{
    "code": 0,
    "data": {
        "pagination": {
            "pageSize": 10,
            "pageNumber": 1,
            "totalNumber": 1
        },
        "resourceId": "E00001",
        "resourceName": "eSIM United Kingdom",
        "options": [
            {
                "optionId": "E00001-02",
                "optionName": "eSIM United Kingdom - 10GB 5Days",
                "currency": "USD",
                "lastUpdatedTime": "2025-05-01T10:00:00+00:00",
                "pricingMode": 1,
                "pricing": {
                    "basePrice": 50,
                    "prebookingFee": null
                }
            }
        ]
    }
}

Option-Level Dynamic Pricing Query#

For certain modules, the pricing is defined at the option level rather than the resource level, and the prices may fluctuate over time.

Fitness#

In the existing Retrieve Fitness Resources Schedule /resources/fitness/{resourceId}/schedule endpoint, we have added a new control parameter that allows clients to specify whether to include pricing information when fetching the schedule.
When the expand=price parameter is added, the response will include additional price-related information.
"price": {
    "currency": "USD",
    "lastUpdatedTime": "2025-10-01T10:00:00+00:00",
    "pricingMode": 1,
    "pricing": {
        "basePrice": 25.0,
        "prebookingFee": null
    }
}
Response
Retrieve Fitness Resources Schedule - Response

{
    "code": 0,
    "data": {
        "resourceId": "F00001",
        "resourceName": "DragonPass Fitness Club",
        "schedules": [
            {
                "date": "2025-10-01",
                "optionList": [
                    {
                        "optionId": "F00001-01",
                        "optionName": "Hatha Yoga",
                        "optionType": 2,
                        "startTime": "10:00",
                        "endTime": "11:00",
                        "price": {
                            "currency": "USD",
                            "lastUpdatedTime": "2025-10-01T10:00:00+00:00",
                            "pricingMode": 1,
                            "pricing": {
                                "basePrice": 25.0,
                                "prebookingFee": null
                            }
                        }
                    },
                    {
                        "optionId": "F00001-02",
                        "optionName": "Hatha Yoga",
                        "optionType": 2,
                        "startTime": "11:00",
                        "endTime": "12:00",
                        "price": {
                            "currency": "USD",
                            "lastUpdatedTime": "2025-10-01T10:00:00+00:00",
                            "pricingMode": 1,
                            "pricing": {
                                "basePrice": 25.0,
                                "prebookingFee": null
                            }
                        }
                    },
                    {
                        "optionId": "F00001-dayPass",
                        "optionName": "Day Pass",
                        "optionType": 1,
                        "startTime": "08:00",
                        "endTime": "20:00",
                        "price": {
                            "currency": "USD",
                            "lastUpdatedTime": "2025-10-01T10:00:00+00:00",
                            "pricingMode": 1,
                            "pricing": {
                                "basePrice": 10.0,
                                "prebookingFee": null
                            }
                        }
                    }
                ]
            }
        ]
    }
}
Modified at 2026-01-12 03:48:57
Previous
Check Prebooking Resource & Option Availability
Next
Image Parameters