# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tile.fund/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
