MapTiler Other API

The Other API from MapTiler — 3 operation(s) for other.

Operations 3

GET /sprites/{spriteId}/sprite{scale}.{format} Sprites (icon sets)
GET /fonts/{fontstack}/{start}-{end}.pbf Fonts (glyphs)
GET /ogc/conformance OGC API conformance classes

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/maptiler-other-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

maptiler-other-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MapTiler Coordinates Other API
  version: '1.0'
  description: "MapTiler API allows you to programmatically access all the data, maps, services, and resources available in your MapTiler account. \n\nAccess to your resources via MapTiler API is read-only, and therefore safe and well suited for public end-user applications. You can use it to add a map directly to your website, request map tiles, create an image with a location map for your business, search for addresses, and more. \n\nThe universal public API request format is:\n\n```\nhttps://api.maptiler.com/{METHOD}/{QUERY}.json?{PARAMS}&key=YOUR_MAPTILER_API_KEY_HERE\n```\n\n> [!KEY]\n> You need a **MapTiler API key** to use this service. [Get it here](https://cloud.maptiler.com/account/keys/){:target=\"_blank\" rel=\"noopener noreferrer\"} and [learn how to protect it](/guides/maps-apis/maps-platform/how-to-protect-your-map-key/).\n"
  termsOfService: https://www.maptiler.com/terms/
  contact:
    name: Support
    email: support@maptiler.com
    url: https://docs.maptiler.com/support/requests/
    premium: https://www.maptiler.com/support/
servers:
- description: MapTiler API
  url: https://api.maptiler.com/
security:
- key: []
tags:
- name: Other
paths:
  /sprites/{spriteId}/sprite{scale}.{format}:
    parameters:
    - name: spriteId
      in: path
      description: Identifier of the sprite.
      required: true
      schema:
        type: string
    - name: scale
      in: path
      required: false
      schema:
        type: string
        enum:
        - '@2x'
    - name: format
      in: path
      required: true
      schema:
        type: string
        enum:
        - png
        - json
    get:
      summary: Sprites (icon sets)
      description: Map icons (sprites) used to display the vector map.
      tags:
      - Other
      security: []
      responses:
        '200':
          content:
            application/json: {}
            image/png: {}
  /fonts/{fontstack}/{start}-{end}.pbf:
    parameters:
    - name: fontstack
      in: path
      required: true
      description: Font name, or more comma-separated names.
      example: Roboto Medium,Noto Sans Regular
      schema:
        type: string
    - name: start
      in: path
      required: true
      description: Start of the glyph range.
      example: 0
      schema:
        type: integer
        multipleOf: 256
    - name: end
      in: path
      required: true
      description: End of the glyph range (last glyph index).
      example: 255
      schema:
        type: integer
    get:
      summary: Fonts (glyphs)
      description: Generates the glyphs for the requested fonts. Used when displaying vector maps.
      tags:
      - Other
      responses:
        '200':
          content:
            application/x-protobuf: {}
        '400':
          description: Invalid glyph range
  /ogc/conformance:
    get:
      summary: OGC API conformance classes
      description: Declaration of the implemented conformance classes.
      tags:
      - Other
      responses:
        '200':
          content:
            application/json:
              schema:
                type: string
components:
  securitySchemes:
    key:
      description: Your own API key from https://cloud.maptiler.com/
      type: apiKey
      name: key
      in: query