Atlasblock API

GET/v1/poi/categories

The POI category taxonomy and the OSM tags behind each.

[ EXAMPLE REQUEST ]
curl "https://atlasblock.dev/api/v1/poi/categories"
[ 200 OK ]
{
  "status": "success",
  "data": {
    "count": 11,
    "categories": [
      {
        "category": "food_drink",
        "osm_selectors": [
          "amenity=restaurant",
          "amenity=cafe",
          "amenity=fast_food",
          "amenity=food_court"
        ]
      }
    ]
  }
}
GET/v1/poi/categories
[ CURL ]
curl "https://atlasblock.dev/api/v1/poi/categories" \
  -H "Authorization: Bearer $ATLASBLOCK_API_KEY"
[ EVERY REQUEST ]

Send an Authorization: Bearer key against the base URL https://atlasblock.dev/api. Every call counts toward your plan quota. See the overview for authentication, rate limits, and status codes.