1. 机票
龙虾开放平台(通用版)
  • 欢迎语
  • 快速开始
    • 接入流程
    • 公共请求头
    • 注意事项
    • 速率限制与配额策略
    • 鉴权说明
    • 错误码
  • AI 接入
    • AI接入说明
    • MCP
    • Code Mode
  • 机票
    • 机票接口说明
    • 机场搜索
      GET
    • 创建机票订单
      POST
    • 机票验价
      POST
    • 机票查询列表
      POST
    • 发起支付
      POST
    • 取消/退票
      POST
    • 查询取消手续费
      POST
    • 订单详情
      POST
    • 订单列表
      POST
  • 酒店
    • 酒店接口说明
    • 酒店查询列表
      POST
    • 酒店房型详情
      POST
    • 创建酒店订单
      POST
  • 数据模型
    • response.Response
    • schema.AirportSearchResponse
    • schema.FlightOrderCancelRequest
    • schema.FlightOrderCancelResponse
    • schema.FlightCancelFeeResponse
    • schema.FlightOrderCreateRequest
    • schema.FlightOrderCreateResponse
    • schema.FlightOrderDetailRequest
    • schema.FlightOrderDetailResponse
    • schema.FlightOrderListRequest
    • schema.FlightOrderListResponse
    • schema.FlightOrderPayRequest
    • schema.FlightOrderPayResponse
    • schema.FlightPricingRequest
    • schema.FlightPricingResponse
    • schema.FlightSearchResponse
    • schema.HotelOrderCreateRequest
    • schema.HotelOrderCreateResponse
    • schema.HotelRoomsRequest
    • schema.HotelRoomsResponse
    • schema.HotelSearchRequest
    • schema.HotelSearchResponse
    • schema.AirportItem
    • schema.ContactInfo
    • schema.InvoiceAddress
    • schema.PassengerInfo
    • schema.FlightOrderInfo
    • schema.FlightOrderItem
    • schema.PageInfo
    • schema.PassengerFareItem
    • schema.FlightItem
    • schema.GuestInfo
    • schema.RoomType
    • schema.HotelSearchFilters
    • schema.HotelItem
    • schema.CabinFareItem
    • schema.RoomTypeProduct
    • schema.RefundRuleInfo
  1. 机票

订单列表

POST
/open/v1/flight/order/list
分页查询机票订单列表,支持按状态和时间范围过滤。

请求参数

Authorization
API Key
在 header 添加参数
Authorization
示例:
Authorization: ********************
or
Header 参数

Body 参数application/json必填

示例
{
    "end_date": "2026-07-11",
    "page": 1,
    "page_size": 10,
    "start_date": "2026-06-12",
    "status": "issued",
    "out_trade_no": "MERCHANT_123",
    "external_user_id": "E123456",
    "contact_phone": "13800138000"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'https://open.longxiachuxing.com/api/open/v1/flight/order/list' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "end_date": "2026-07-11",
    "page": 1,
    "page_size": 10,
    "start_date": "2026-06-12",
    "status": "issued",
    "out_trade_no": "MERCHANT_123",
    "external_user_id": "E123456",
    "contact_phone": "13800138000"
}'

返回响应

🟢200
application/json
OK
Bodyapplication/json

示例
{
    "code": 0,
    "data": {
        "orders": [
            {
                "system_no": "RDF202605281430001",
                "out_trade_no": "MERCHANT_123",
                "flight_no": "CZ3569",
                "airline": "南方航空",
                "cabin_class": "economy",
                "dep_city": "深圳",
                "dep_airport_name": "宝安国际机场",
                "dep_time": "2026-06-16 14:15",
                "arr_city": "杭州",
                "arr_airport_name": "虹桥国际机场",
                "arr_time": "2026-06-16 16:30",
                "depart_time": "2026-06-01 10:00",
                "total_amount": 650,
                "status": "2",
                "status_text": "已支付",
                "pay_status": "2",
                "flight_status": "5",
                "flight_status_text": "出票中",
                "pnr": "ABC123",
                "created_at": "2026-05-28 14:30:00"
            }
        ],
        "page_info": {
            "page": 1,
            "page_size": 10,
            "total": 128
        },
        "total": 25
    },
    "message": "success",
    "request_id": "req_a1b2c3"
}
修改于 2026-06-13 08:47:51
上一页
订单详情
下一页
酒店接口说明
Built with