FR24 OpenAPI
  1. API Reference
FR24 OpenAPI
  • FR24_API_V2.0
    • Guides
      • API Work Flow
      • Introduction
      • Appendix
      • Version History
      • Error Code
    • API Reference
      • shopping
        POST
      • pricing
        POST
      • presaleAncillaryShopping
        POST
      • seatMap
        POST
      • booking
        POST
      • ticketing
        POST
      • orderChangeInforming
        POST
      • orderDetail
        POST
      • postsaleAncillaryShopping
        POST
      • ancillaryBooking
        POST
      • ancillaryPurchase
        POST
      • ancillaryOrderDetail
        POST
      • changeReshop
        POST
      • reissueRequest
        POST
      • refundRequest
        POST
      • refundConfirming
        POST
      • voidRequest
        POST
      • fileUpload
        POST
      • selectBalance
        POST
    • About us
      • API capability
      • Business Cooperation
      • Portal
  1. API Reference

ticketing

POST
/api/new/ticketing.do
This API is used for order payment & ticket issue.
Make payments and request ticketing by calling the Ticketing API. Partner calls this API to inform FR24 to deduct balance for the order requested. If the API call successfully, the payment completed successfully. The ticket number will be obtained via OrderChangeInforming API, or via the OrderDetail API.
After the order is created, the order has to be paid within payment deadline, otherwise the order will be canceled.
Note: Requesting the API of Ticketing successfully only means FR24 has received the ticketing application, and it will be pending rather than being instantly confirmed and issued. FR24 will notify the order status change via orderChangeInforming API if the booking is confirmed and the ticket can be issued.

Request

Header Params

Body Params application/json

Example
{

    "authentication": {

        "sign": "{{sign}}",

        "timestamp": "{{time}}"

    },

    "orderNo": "{{orderNo_booking}}",

    "partnerOrderNo": "1234567ss",

    "totalPrice": {{totalPrice_booking}},

    "currency": "{{currency_booking}}",

    "paymentMethod": "0",
    
    "seriesTraceId": "order_202410101503481394",
        
    "seriesRsTime": 5

}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://flight-test.flightroutes24.com/api/new/ticketing.do' \
--header 'Accept-Encoding;' \
--header 'appKey;' \
--header 'content-Type: application/json' \
--data-raw '{

    "authentication": {

        "sign": "",

        "timestamp": "{{time}}"

    },

    "orderNo": "{{orderNo_booking}}",

    "partnerOrderNo": "1234567ss",

    "totalPrice": {{totalPrice_booking}},

    "currency": "{{currency_booking}}",

    "paymentMethod": "0",
    
    "seriesTraceId": "order_202410101503481394",
        
    "seriesRsTime": 5

}'

Responses

🟢200OK
application/json
Body

Examples
{
    "traceId": "",
    "code": "000000",
    "message": "success",
    "processingTime": 160,
    "data": {
        "orderNo": "{{orderNo_booking}}",
        "orderStatus": "11",
        "partnerOrderNo": "1234567ss ",
        "totalPrice": 1234.5,
        "currency": "{{currency_booking}}"
    }
}
Modified at 2025-06-12 09:39:42
Previous
booking
Next
orderChangeInforming
Built with