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