Azure Maps Search API

The Search API from Azure Maps — 2 operation(s) for search.

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/microsoft-azure-maps-search-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 email required.

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

OpenAPI Specification

microsoft-azure-maps-search-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Azure Maps REST Geocoding Search API
  description: Azure Maps Search REST API provides geocoding, reverse geocoding, point of interest search, address search, and fuzzy search using location services.
  version: '1.0'
servers:
- url: https://atlas.microsoft.com
security:
- subscriptionKey: []
- azure_auth:
  - user_impersonation
tags:
- name: Search
paths:
  /search/poi/{format}:
    parameters:
    - name: format
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: searchPoi
      summary: Maps POI search
      description: Searches points of interest by category.
      tags:
      - Search
      parameters:
      - name: api-version
        in: query
        required: true
        schema:
          type: string
      - name: query
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: POI results
          content:
            application/json:
              schema:
                type: object
  /search/fuzzy/{format}:
    parameters:
    - name: format
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: fuzzySearch
      summary: Maps Fuzzy search
      description: Fuzzy search supporting POIs, addresses, and geographies.
      tags:
      - Search
      parameters:
      - name: api-version
        in: query
        required: true
        schema:
          type: string
      - name: query
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Fuzzy results
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    subscriptionKey:
      type: apiKey
      in: query
      name: subscription-key
    azure_auth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
          scopes:
            user_impersonation: Impersonate user
externalDocs:
  description: Azure Maps Search REST API Documentation
  url: https://learn.microsoft.com/en-us/rest/api/maps/search
x-generated-from: https://learn.microsoft.com/en-us/rest/api/maps/search
x-generated-by: claude-crawl-2026-05-08