id/tiles/{source}/{z}/{x}/{y} Fetch Mapbox Vector Tiles as binary protobuf bytes.
First call /sources to list available sources, then use /tiles/{source} for TileJSON or /tiles/{source}/{z}/{x}/{y} for tile bytes.
curl "https://YOUR-RAPIDAPI-HOST/tiles/africa/14/8321/5674" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: YOUR_RAPIDAPI_HOST" \
--output tile.pbf Tile Source Discovery
Returns all available vector tile sources. Use the returned id in TileJSON and tile requests.
idnamedescriptionformatminzoommaxzoomboundscentertilestilejsonTileJSON
Returns TileJSON metadata for one source, including bounds, center, format, zoom range, tile URL template, attribution, and vector layer metadata.
Vector Tile
sourcezxyHTTP/1.1 200 OK
Content-Type: application/x-protobuf
Cache-Control: public, max-age=86400
<binary tile data> A valid coordinate with no tile returns 204. Invalid z, x, or y values return 400.