Retrieve point of interest dump

Retrieve point of interest dump

#b2b

https://api.worldota.net/api/b2b/v3/hotel/poi/dump

The call returns a dump with a list of hotels by various locations along with nearby points of interest (POI).

⚠️
Content indexing isn’t allowed.

Request example

curl --user '<KEY_ID>:<API_KEY>' 'https://api.worldota.net/api/b2b/v3/hotel/poi/dump' \
--header 'Content-Type: application/json' \
--data '{
  "language": "en"
}'

Response

Response

Response example

{
  "data": {
    "url": "https://partner-feedora.s3.eu-central-1.amazonaws.com/pois/feed_pois_en_v3.json.zst",
    "last_update": "2025-09-15T04:47:20Z"
  },
  "debug": {
    "api_endpoint": {
      "endpoint": "api/b2b/v3/hotel/poi/dump",
      "is_active": true,
      "is_limited": true,
      "remaining": 98,
      "requests_number": 100,
      "reset": "2025-09-17T00:00:00",
      "seconds_number": 86400
    },
    "request": {
      "language": "en"
    },
    "method": "POST",
    "real_ip": "104.30.161.77",
    "request_id": "3234913e4c9dc04f843410ecd098a596",
    "key_id": 1234,
    "api_key_id": 1234,
    "utcnow": "2025-09-16T16:14:50.755175"
  },
  "status": "ok",
  "error": null
}

Dump file structure

The file available at the url contains the following structure:

[
  {
    "id": "string",
    "hid": 12345,
    "pois": [
      {
        "poi_name": "string",
        "poi_name_en": "string",
        "poi_type": "string",
        "poi_subtype": "string",
        "distance": 321
      }
    ]
  }
]

Field details

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.