Amazon Location Service · Arazzo Workflow

Amazon Location Service Geocode Address and Provision Map

Version 1.0.0

Geocode free-form text and stand up a map to render the result.

1 workflow 1 source API 1 provider
View Spec View on GitHub GeocodingGeofencingLocationMapsRoutingArazzoWorkflows

Provider

amazon-location-service

Workflows

geocode-and-map
Geocode text, create a map to render it, and verify the map.
Searches a place index for free-form text to resolve coordinates, creates a map styled for rendering those results, and describes the map to confirm it is provisioned and ready for embedding.
3 steps inputs: IndexName, MapName, MaxResults, Style, Text outputs: mapArn, mapName, results, topPlaceLabel, topPosition
1
geocodeText
Geocode the supplied free-form text against the place index to resolve a set of candidate places with coordinates.
2
createMap
Create a map resource styled to render the geocoded result for a client application.
3
describeMap
Describe the new map to confirm it is provisioned and ready to embed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Location Service Geocode Address and Provision Map
  summary: Geocode free-form text and stand up a map to render the result.
  description: >-
    Geocodes a free-form address or place name with the place index search, then
    provisions a map resource that a client application can use to render the
    geocoded coordinates, finally describing the map to confirm it is ready.
    Every step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: mapsApi
  url: ../openapi/amazon-location-service-maps-api-openapi.yml
  type: openapi
workflows:
- workflowId: geocode-and-map
  summary: Geocode text, create a map to render it, and verify the map.
  description: >-
    Searches a place index for free-form text to resolve coordinates, creates a
    map styled for rendering those results, and describes the map to confirm it
    is provisioned and ready for embedding.
  inputs:
    type: object
    required:
    - IndexName
    - Text
    - MapName
    - Style
    properties:
      IndexName:
        type: string
        description: The name of the place index resource to query.
      Text:
        type: string
        description: The free-form address, name, city, or region to geocode.
      MaxResults:
        type: integer
        description: Optional maximum number of geocoding results to return.
      MapName:
        type: string
        description: The name to assign to the map resource that renders the result.
      Style:
        type: string
        description: The map style to render (e.g. VectorEsriStreets).
  steps:
  - stepId: geocodeText
    description: >-
      Geocode the supplied free-form text against the place index to resolve a
      set of candidate places with coordinates.
    operationId: SearchPlaceIndexForText
    parameters:
    - name: IndexName
      in: path
      value: $inputs.IndexName
    requestBody:
      contentType: application/json
      payload:
        Text: $inputs.Text
        MaxResults: $inputs.MaxResults
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      results: $response.body#/Results
      topPlaceLabel: $response.body#/Results/0/Place/Label
      topPosition: $response.body#/Results/0/Place/Geometry/Point
      dataSource: $response.body#/Summary/DataSource
  - stepId: createMap
    description: >-
      Create a map resource styled to render the geocoded result for a client
      application.
    operationId: CreateMap
    requestBody:
      contentType: application/json
      payload:
        MapName: $inputs.MapName
        Configuration:
          Style: $inputs.Style
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mapName: $response.body#/MapName
      mapArn: $response.body#/MapArn
  - stepId: describeMap
    description: >-
      Describe the new map to confirm it is provisioned and ready to embed.
    operationId: DescribeMap
    parameters:
    - name: MapName
      in: path
      value: $steps.createMap.outputs.mapName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mapName: $response.body#/MapName
      mapDataSource: $response.body#/DataSource
  outputs:
    topPlaceLabel: $steps.geocodeText.outputs.topPlaceLabel
    topPosition: $steps.geocodeText.outputs.topPosition
    results: $steps.geocodeText.outputs.results
    mapName: $steps.describeMap.outputs.mapName
    mapArn: $steps.createMap.outputs.mapArn

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/amazon-location-service-geocode-and-map-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.