> For the complete documentation index, see [llms.txt](https://docs.tile.fund/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tile.fund/master.md).

# Welcome to the map!

**TileFund** is a freemium, publicly funded vector tile map provider. We offer a generous free tier for apps that need mapping at a local scale - think neighborhood or city. If you need maps for a larger region, we offer that as well at very low monthly cost compared to existing providers like Mapbox or MapTiler. Our goal is to make map-driven applications easy and affordable for everyone.

{% hint style="warning" %}
**TileFund** is being actively built. Expect shakiness and changes to the APIs in the coming weeks. It should **not** be considered production ready in any capacity. This alert will be removed once things are stable.
{% endhint %}

## Tile Endpoint

<mark style="color:blue;">`GET`</mark> `https://tile.fund/{ACCESS_TOKEN}/{z}/{x}/{y}.pbf`

The primary tile endpoint for our OpenMapTiles compatible North America map. Use our styles or plug this endpoint into your own OMT compatible style!

#### Path Parameters

| Name          | Type    | Description               |
| ------------- | ------- | ------------------------- |
| ACCESS\_TOKEN | string  | Your site's access token. |
| z             | integer | Zoom level of tile.       |
| x             | string  | Tile X coordinate.        |
| y             | string  | Tile Y coordinate.        |

{% tabs %}
{% tab title="200 Tile data in MVT format." %}

```
< Binary serialized protocol buffer, MVT data >
```

{% endtab %}

{% tab title="404 No tile found, or tile outside of the configured Region for your Site." %}

```
< null >
```

{% endtab %}
{% endtabs %}
