Skip to main content
GET
/
lounges
/
offers
Get offers
curl --request GET \
  --url https://business.bfinance.app/external/api/lounges/offers \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "offers": [
      {
        "id": "<string>",
        "terminal": "<string>",
        "title": "<string>",
        "description": "<string>",
        "timezone": "<string>",
        "photos": [
          "<string>"
        ],
        "workingTime": "<string>",
        "features": [
          {
            "id": "<string>",
            "title": "<string>",
            "payable": true
          }
        ],
        "restrictions": [
          {
            "type": "<string>",
            "description": "<string>"
          }
        ],
        "terminalType": "<string>",
        "location": "<string>",
        "info": {},
        "gateType": "<string>",
        "variants": [
          {
            "id": "<string>",
            "hash": "<string>",
            "type": "<string>",
            "hours": 123,
            "refund": true,
            "price": {
              "adult": {
                "amount": 123,
                "currency": "<string>"
              },
              "child": {
                "amount": 123,
                "currency": "<string>"
              }
            }
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Query Parameters

airport
string
required

IATA airport code (3 letters)

Response

List of available lounge offers

status
enum<string>
Available options:
success
data
object