Get started

Quickstart

Quickstart

Mountaya has three products behind one set of keys. Pick the one you are building with and make your first call. Map Embedding and the Tile API need only a publishable key; the Data API adds a short-lived, server-side session token. Each path takes five minutes or less.

Get your keys

Keys come from your Mountaya dashboard under Settings → API keys. You get a publishable key (pk_…) that identifies your project and is safe to ship in a browser or mobile app; it authorizes everything here. If you call the Data API from a server, you also create a secret key (sk_…) that mints session tokens; keep it on a server you control and never expose it to a browser.

Each key carries scopes (data, tiles, and embedding) that gate which products it can reach, so enable the ones your integration needs. See authentication for the full key, scope, and session model.

Make your first call

Choose your product and run its minimal example.

Drop the full map editor onto a page with a single <iframe> and your publishable key. No backend required.

<iframe
  src="https://app.mountaya.com/studio/embed?publishable_key=pk_your_publishable_key&terrain=topo"
  title="Mountaya map"
  width="100%"
  height="520"
  style="border: 0; border-radius: 8px;"
  loading="lazy"
></iframe>

That is a complete, interactive embed. Continue with the Map Embedding quickstart to select content and controls.

Choose your path

Next steps