Choose an area that has an article name on the english Wikipedia with the exact same spelling and case.
E.g. "Sweden" or "Västernorrland County".

Data to include:

Custom queries follows OverpassQL syntax. Only include the statement that selects the nodes, ways and relations.

Example 1:

nwr["tourism"="hostel"](area.searchArea);

Example 2, which utilizes the "()" union syntax that works like an OR:

(nwr["tourism"="hostel"](area.searchArea);nwr["tourism"="motel"](area.searchArea););

Example 3, which utilizes regex instead:

nwr["tourism"~"^(hostel|motel)$"](area.searchArea);

Custom query:

This tool will lookup the right relation id from the Wikidata API and then query Overpass-API for the choosen data in the area. If the area is missing an OpenStreetMap relation id property you will get an error. Overpass is quite slow so you might have to wait a minute or two for big countries or queries that select a lot of POIs