Geoapify

Geoapify offers a suite of APIs for integrating maps, geocoding, routing, and other location-based services into applications.

25 actions Integration catalog
Request access
Connect Geoapify once you're in Boring.
01 · WHAT THE AGENT CAN DO

Actions

Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.

Address AutocompleteGEOAPIFY_ADDRESS_AUTOCOMPLETE
Tool to fetch address suggestions based on partial input. Use when you need to get predictive suggestions from incomplete address text.
Batch RequestsGEOAPIFY_BATCH_REQUESTS
Create or retrieve asynchronous batch processing jobs for geocoding, reverse geocoding, routing, or isoline APIs. Use cases: - Batch geocode up to 1000 addresses at once (forward geocoding) - Batch reverse geocode multiple coordinates - Process multiple routing or isoline requests in one batch Workflow: 1. Create a job by providing 'api' and 'inputs' (returns job ID and status 'pending') 2. Poll the job by providing 'id' until status changes from 'pending' to complete (results available)
Get Boundaries Containing LocationGEOAPIFY_BOUNDARIES
Retrieve all administrative boundaries that contain a given location. Returns hierarchical boundaries (suburb, city, county, state, country) as GeoJSON features. Use this to find what administrative areas a coordinate belongs to, get boundary polygons for mapping, or identify postal codes and political districts for a location.
Create Batch Forward Geocode JobGEOAPIFY_CREATE_BATCH_FORWARD_GEOCODE_JOB
Tool to create a batch forward geocoding job for up to 1000 addresses. Use when you need to geocode multiple addresses asynchronously. Returns a job ID for retrieving results once processing is complete.
Create Batch Reverse Geocode JobGEOAPIFY_CREATE_BATCH_REVERSE_GEOCODE_JOB
Tool to create a batch reverse geocoding job that converts multiple lat/lon coordinates into addresses asynchronously. Use when you need to reverse geocode multiple coordinates (up to 1000) in one request. Returns a job ID for retrieving results.
Forward GeocodingGEOAPIFY_FORWARD_GEOCODING
Tool to convert an address into geographic coordinates. Use when you need latitude and longitude from an address.
Geometry OperationGEOAPIFY_GEOMETRY
Tool to perform geometric operations on stored polygon geometries. Use when combining or intersecting multiple stored geometries.
Get Batch Forward Geocode ResultsGEOAPIFY_GET_BATCH_FORWARD_GEOCODE_RESULTS
Tool to retrieve batch forward geocoding job results using the job ID. Use when you need to fetch geocoded addresses from a previously submitted batch job. Results available in JSON or CSV format. Job must be complete (status 200) to get results.
Get Batch Reverse Geocode ResultsGEOAPIFY_GET_BATCH_REVERSE_GEOCODE_RESULTS
Tool to retrieve batch reverse geocoding job results. Use when you have a batch job ID from creating a batch reverse geocoding job and want to fetch the completed results.
Get Child Boundaries (Consists Of)GEOAPIFY_GET_BOUNDARIES_CONSISTS_OF
Get boundaries that a specified location consists of. Returns child administrative divisions (states for country, districts for city). Useful for drilling down into sub-regions.
Get Map Style JSONGEOAPIFY_GET_MAP_STYLE
Tool to retrieve vector map style JSON for MapLibre GL and Mapbox GL. Returns a Mapbox-compatible style specification for rendering vector tiles.
Generate Static Map ImageGEOAPIFY_GET_STATIC_MAP
Tool to generate static map images with customizable style, size, center, zoom, markers, and geometries. Use when you need a map image for display or printing.
IP GeolocationGEOAPIFY_IP_GEOLOCATION
Lookup geographic location information for an IP address. Returns city-level location data including country, region, city, coordinates, and additional metadata like currency and language. If no IP is provided, returns location for the caller's IP address.
Generate isoline (isochrone/isodistance)GEOAPIFY_ISOLINE
Tool to generate isochrone or isodistance isolines. Use when visualizing reachable areas from a point; use `id` to poll ongoing calculations.
List PostcodesGEOAPIFY_LIST_POSTCODES
Tool to list postcodes within a specified area or boundary. Use when you need to retrieve multiple postcodes in a geographic region using filters like circle, rectangle, or place ID.
Map MatchingGEOAPIFY_MAP_MATCHING
Snap GPS traces to the road network for accurate route reconstruction. Use this tool to: - Correct GPS drift and inaccuracies in recorded tracks - Align vehicle/cycling/walking traces to actual roads - Get road names and properties along the matched route - Calculate accurate distance and travel time from GPS data
Fetch Geoapify Map TilesGEOAPIFY_MAP_TILES
Tool to fetch raster map tiles or style JSON from Geoapify. Use when rendering custom maps with specific styles.
Create Marker IconGEOAPIFY_MARKER_ICON
Generate custom map marker icons as PNG images. Creates customizable marker icons for use in mapping applications (Leaflet, MapLibre GL, Google Maps, etc.). Supports multiple styles (material, circle, plain), custom colors, icons from Material Design and Font Awesome libraries, or custom text/numbers. Example use cases: - Create a red location pin with a star icon - Generate numbered markers (1, 2, 3...) for route waypoints - Create custom-colored markers matching your brand
Place DetailsGEOAPIFY_PLACE_DETAILS
Tool to retrieve detailed information about a specific place. Use when you have a place ID or coordinates and need comprehensive metadata.
Places SearchGEOAPIFY_PLACES
Search for points of interest (POIs) like restaurants, hotels, attractions, hospitals, etc. within a geographic area. Use this tool when you need to find places by category near a location. You must provide either a 'filter' (to search within a bounded area) or 'bias' (to rank results by proximity to a point). Common use cases: - Find restaurants near a location: categories=['catering.restaurant'], bias='proximity:lon,lat' - Search for hotels in a city area: categories=['accommodation.hotel'], filter='circle:lon,lat,5000' - Find wheelchair-accessible attractions: categories=['tourism.attraction'], conditions=['wheelchair']
Postcode SearchGEOAPIFY_POSTCODE
Tool to retrieve postcode information for a location. Use when you need to fetch postcode details based on a given postcode or geographic coordinates.
Reverse GeocodingGEOAPIFY_REVERSE_GEOCODING
Tool to reverse geocode coordinates into a structured address. Use when converting lat/lon to human-readable addresses.
Route MatrixGEOAPIFY_ROUTE_MATRIX
Tool to compute travel time and distance matrices. Use when you need durations and distances between multiple origin and destination pairs.
Route PlannerGEOAPIFY_ROUTE_PLANNER
Optimize multi-agent routes for deliveries, pickups, and service jobs. Solves Vehicle Routing Problems (VRP) including: Travelling Salesman (TSP), Capacitated VRP, VRP with Time Windows, and Pickup-Delivery problems. Required: Either 'jobs' (one-way tasks) or 'shipments' (pickup-delivery pairs). Coordinates: Use [longitude, latitude] format (not lat/lon).
RoutingGEOAPIFY_ROUTING
Tool to calculate routes between multiple waypoints. Use when you need both distance, time, and turn-by-turn directions for two or more coordinates.