1. Search
Pacific Bedbank API Rates Doc
  • INTRODUCTION
  • Getting Started
  • Payments
  • Discover
  • Endpoints Overview
  • Webhooks
  • Authentication
    • Login
      POST
    • Me
      GET
  • Search
    • List Countries
      GET
    • List Currencies
      GET
    • List Hotels
      GET
    • Search Hotel Rates
      POST
    • Search Hotel Min Rates
      POST
  • Bookings
    • Create Prebook
      POST
    • Prebook Payment Page
      GET
    • Prebook Payment Return
      GET
    • Get Prebook
      GET
    • List Bookings
      GET
    • Confirm Booking
      POST
    • Cancel Booking
      PUT
    • Amend Guest Name
      PUT
    • Get Booking
      GET
  • Schemas
    • LoginResponse
    • LoginRequest
    • CountriesResponse
    • Country
    • CurrenciesResponse
    • Currency
    • HotelListResponse
    • HotelSummary
    • HotelEssential
    • RateEssential
    • RoomTypeEssential
    • SearchResponseEssential
    • SupplierWarning
    • HotelRatesRequest
    • OccupancyInput
    • WholesalerCurrency
    • HotelMinRate
    • HotelMinRatesResponse
    • HotelMinRatesRequest
    • CreditLineInfo
    • PaymentSdkInfo
    • PrebookResponse
    • PrebookRoomRate
    • TravellerInfo
    • PrebookRequest
    • TravellerInput
    • BookingListItem
    • BookingListResponse
    • ConfirmBookingResponse
    • ConfirmBookingRequest
    • GuestInput
    • HolderInput
    • CancelBookingResponse
    • AmendGuestResponse
    • AmendGuestRequest
    • BookingDetailResponse
  1. Search

List Currencies

GET
/api/v1/currencies
List currencies available for rates and bookings.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or

Responses

🟢200
application/json
OK
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://rates-api.globalbedbank.com/api/v1/currencies' \
--header 'Authorization: <api-key>'
Response Response Example
{
    "currencies": [
        {
            "code": "string",
            "name": "string",
            "countries": [
                "string"
            ]
        }
    ],
    "total": 0
}
Modified at 2026-06-03 00:11:28
Previous
List Countries
Next
List Hotels
Built with