# Tiles ## Get a Mapbox Vector Tile `tiles.get(inty, TileGetParams**kwargs) -> BinaryResponseContent` **get** `/api/v1/tiles/{z}/{x}/{y}` Get a Mapbox Vector Tile ### Parameters - `z: int` - `x: int` - `y: int` ### Returns - `BinaryResponseContent` ### Example ```python import os from plaza import Plaza client = Plaza( api_key=os.environ.get("PLAZA_API_KEY"), # This is the default and can be omitted ) tile = client.tiles.get( y=0, z=0, x=0, ) print(tile) content = tile.read() print(content) ```