Retrieve hotel incremental dump

Retrieve hotel incremental dump

🆕
The Sandbox environment is available exclusively to new partners who begin their integration in Q4 2025.
https://api-sandbox.worldota.net/api/b2b/v3/hotel/info/incremental_dump/

The call gets the dump with the ETG hotels which content has changed in the previous day.

ℹ️

The dump:

  • Is incremental.
  • Should be updated every day.

The ETG generates each archive for a single language.

⚠️
  • Indexing of any internal content such as photos, descriptions and others isn’t allowed.
  • Any public content such as a name, address, amenities and policies can be indexed.

Sandbox limitations

⚠️
Use only field values, IDs, API keys, and any static content from the sandbox environment within the sandbox. Do not use sandbox data in test or production environments, and do not mix data or configuration between different environments.

Request

  • language. The field value is always en.
  • inventory. The possible field values:
    • all.
    • direct.
    • preferable.
    • direct_fast.

Response

  • In the dump, the maximum items’ number is 1000.
  • currency_code. For every object with this field, the value is always EUR.

Request example

curl --user '<KEY_ID>:<API_KEY>' 'https://api-sandbox.worldota.net/api/b2b/v3/hotel/info/incremental_dump/' \
--header 'Content-Type: application/json' \
--data '{
  "language": "en",
  "inventory": "all"
}'

Request body

Response

Response example

{
  "data": {
    "last_update": "2025-07-07T20:00:00Z",
    "url": "https://example.com/af/feed_en.json.zst"
  },
  "debug": null,
  "error": null,
  "status": "ok"
}

Errors

The error field has the value specified in the headers below.

dump_not_ready

The dump is in processing. Try to send the request later.