Last updated

Changelog

Stay up to date with the latest enhancements to the Demand API.


August 2025

Highlights

✓ New long_stay_friendly and work_friendly tags in /accommodations/details to help partners filter properties for long stays or remote work needs.

✓ New credit_slip_number field in /orders/details/accommodations (replacing the deprecated credit_slip).

✓ New depot_location_type filter in /cars/search and /cars/depots for clearer, location-based pick-up options.


Accommodation

accommodation/details

| New | long_stay_friendly | /accommodations/details| version 3.1

A new boolean field, long_stay_friendly has been added to the accommodations/details endpoint response.

  • Indicates if an accommodation is suitable for long stays (for example, it may include its own kitchen facility-facility ID 45)

| Replacement | work_friendly | /accommodations/details | version 3.1

The work_friendly boolean field replaces the deprecated is_work_friendly tag in the accommodations/details endpoint response.

  • Indicates whether the accommodation supports work-friendly conditions, such as a desk and chair, reliable Wi-Fi, or a co-working area.
Deprecation notice

The is_work_friendly field is deprecated and will be removed in v3.2


Car rentals

cars/search and cars/depots

| New | depot_location_type | cars/search and cars/depots | version 3.1

A new filter, depot_location_type, is now available in /cars/search requests and cars/depots response.

  • Use filters.depot_location_type to search for depots based on location type.
  • This allows you to provide travellers with clear information about pick-up points (e.g. in_terminal, downtown, train_station).
  • This field is optional and may be null if the location type is not defined.

Example - Search request with depot_location_type filter:

{
  "booker": {
    "country": "nl"
  },
  "filters": {"depot_location_type": "downtown"},
  "currency": "EUR",
  "driver": {
    "age": 35
  },
  "route": {
    "dropoff": {
      "datetime": "2025-09-19T11:05",
      "location": {
        "airport": "AMS"
      }
    },
    "pickup": {
      "datetime": "2025-09-17T11:05",
      "location": {
        "airport": "AMS"
      }
    }
  }
}

These enhancements are backward-compatible. Partners not using the new parameters or fields can continue to integrate as before.


Orders

Orders/details/accommodations

| New | credit_slip_number | /orders/details/accommodations | version 3.1

A new field, credit_slip_number has been added to the to the orders/details/accommodations endpoint responses.

  • Previously, the response included credit_slip (an integer used only for internal purposes).
  • The new credit_slip_number field is a string containing the actual credit slip number relevant for partners.
Deprecation notice

The Credit_slip field is deprecated and will be removed in v3.2


References

Accommodation details guide

Learn how to see a specific accommodation facilities and details using this endpoint.

Read now

Cars API guides

Explore our comprehensive set of guidelines for the Car rental API collection.

Read now

Order details guides

Learn how to get details about accommodation orders. This enables you to perform various post-booking tasks.

Read now

Accommodation API reference

Check the accommodations/details endpoint specifications and give it a try in the console to return the new fields.

Check now

Cars API reference

Check the Cars API specifications and use the try out console to get familiar with the endpoints.

Read now

Orders API reference

Check the orders/details endpoint specifications and give it a try in the console to return the new field.

Check now