{
  "info": {
    "name": "Here — mcp.ai",
    "description": "REST API for the Here MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/here",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "here_autosuggest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/autosuggest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "autosuggest"
          ]
        },
        "description": "Tool to fetch possible completions for a partial search term. Use after capturing a partial query and location context to generate typeahead suggestions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"at\": \"\",\n  \"in\": \"\",\n  \"lang\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_browse",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/browse",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "browse"
          ]
        },
        "description": "Tool to search for places around a given location with optional filters. Use when you need nearby points of interest filtered by categories, food types, or name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"at\": \"\",\n  \"lang\": \"\",\n  \"name\": \"\",\n  \"limit\": 0,\n  \"foodTypes\": \"\",\n  \"categories\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_calculate_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/calculate/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "calculate",
            "route"
          ]
        },
        "description": "Calculate optimal routes between multiple waypoints supporting various transport modes (car, truck, bicycle, pedestrian). Returns route summary with travel time and distance. Supports fleet-specific p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"fuelType\": \"\",\n  \"overlays\": \"\",\n  \"waypoints\": \"\",\n  \"routeAttributes\": \"\",\n  \"instructionFormat\": \"\",\n  \"maneuverAttributes\": \"\",\n  \"ignorePreferredRoutes\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_cancel_problem",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/problem",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "problem"
          ]
        },
        "description": "Tool to cancel a running asynchronous tour planning optimization job. Use when you need to stop an in-progress optimization calculation that is no longer needed or was submitted in error.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"problemId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_coordinates_to_tile_indices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/coordinates/to/tile/indices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "coordinates",
            "to",
            "tile",
            "indices"
          ]
        },
        "description": "Tool to convert geographic coordinates to Web Mercator XYZ tile indices. Use when mapping a lat/lng to its containing tile at a given zoom level.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"zoom\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_decode_route_handle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/decode/route/handle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "decode",
            "route",
            "handle"
          ]
        },
        "description": "Tool to decode and return a route from a previously calculated route handle via POST request. Use when you need to retrieve a route using a handle obtained from a previous route calculation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"avoid\": {},\n  \"spans\": \"\",\n  \"units\": \"\",\n  \"origin\": \"\",\n  \"return\": \"\",\n  \"currency\": \"\",\n  \"routeHandle\": \"\",\n  \"X-Request-ID\": \"\",\n  \"departureTime\": \"\",\n  \"transportMode\": \"\",\n  \"pedestrian_speed\": 0,\n  \"maxSpeedOnSegment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_discover",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/discover",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discover"
          ]
        },
        "description": "Tool to discover places and addresses by free-form text near a location. Use when you need to find points of interest or specific addresses from a natural-language query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"at\": \"\",\n  \"in_\": \"\",\n  \"lang\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_find_sequence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/sequence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "sequence"
          ]
        },
        "description": "Tool to solve a Vehicle Routing Problem (VRP) by optimizing routes for a fleet of vehicles serving multiple jobs. Use when you need to optimize delivery routes, pickup sequences, or multi-stop journey",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"plan\": {},\n  \"fleet\": {},\n  \"app_id\": \"\",\n  \"configuration\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_find_waypoint_sequence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/waypoint/sequence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "waypoint",
            "sequence"
          ]
        },
        "description": "Tool to find the optimal sequence of waypoints using POST request to solve the Travelling Salesman Problem. Supports advanced vehicle parameters including truck restrictions, hazardous goods, toll cal",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"algo\": \"\",\n  \"mode\": \"\",\n  \"start\": \"\",\n  \"width\": \"\",\n  \"height\": \"\",\n  \"length\": \"\",\n  \"arrival\": \"\",\n  \"fuelType\": \"\",\n  \"departure\": \"\",\n  \"requestId\": \"\",\n  \"verbosity\": \"\",\n  \"avoidAreas\": \"\",\n  \"avoidLinks\": \"\",\n  \"commercial\": \"\",\n  \"hasTrailer\": \"\",\n  \"improveFor\": \"\",\n  \"destinations\": \"\",\n  \"emissionType\": \"\",\n  \"limitedWeight\": \"\",\n  \"trailerWeight\": \"\",\n  \"trailersCount\": \"\",\n  \"vehicleWeight\": \"\",\n  \"weightPerAxle\": \"\",\n  \"tunnelCategory\": \"\",\n  \"passengersCount\": \"\",\n  \"trailerNumberAxles\": \"\",\n  \"vehicleNumberAxles\": \"\",\n  \"shippedHazardousGoods\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode"
          ]
        },
        "description": "Tool to convert structured address data into geographic coordinates. Use when you need precise lat/lng from a free-text or qualified address input.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"at\": \"\",\n  \"qq\": \"\",\n  \"in_\": \"\",\n  \"lang\": \"\",\n  \"show\": \"\",\n  \"limit\": 0,\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_aliases_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/aliases/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "aliases",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking aliases service. Use to verify service availability before making other aliases API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_aliases_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/aliases/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "aliases",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE Tracking Aliases service. Use when you need to verify the service version for compatibility or debugging purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_associations_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/associations/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "associations",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Associations API service. Use when you need to verify that the associations service is operational and responding correctly.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_associations_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/associations/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "associations",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Associations tracking service. Use when you need to verify the service version or check service availability.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_autocomplete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/autocomplete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "autocomplete"
          ]
        },
        "description": "Tool to get address autocomplete suggestions for partial address queries. Use when you need address-specific completions focusing on addresses and administrative areas, unlike autosuggest which includ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"at\": \"\",\n  \"in\": \"\",\n  \"lang\": \"\",\n  \"show\": \"\",\n  \"limit\": 0,\n  \"types\": \"\",\n  \"X-Request-ID\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_base_map_tile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/base/map/tile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "base",
            "map",
            "tile"
          ]
        },
        "description": "Retrieves a base map tile image from HERE Raster Tile API v3. Returns map tiles in various styles (normal day/night, satellite, reduced/lite) at specified zoom levels and tile coordinates using the We",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"size\": 0,\n  \"zoom\": 0,\n  \"format\": \"\",\n  \"scheme\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_bulkjobs_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulkjobs/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulkjobs",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking bulkjobs service. Use to verify service availability before making other bulkjobs API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_bulkjobs_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulkjobs/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulkjobs",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Bulkjobs tracking service. Use when you need to verify the service version number.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_c2_c_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/c2/c/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "c2",
            "c",
            "health"
          ]
        },
        "description": "Tool to check HERE C2C service health status. Use when you need to verify if the Car-to-Cloud tracking service is operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_c2_c_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/c2/c/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "c2",
            "c",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE C2C tracking service. Use when you need to check the service version for compatibility or monitoring purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_copyright",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/copyright",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "copyright"
          ]
        },
        "description": "Tool to retrieve copyright information for HERE map tiles. Returns copyright text, labels, and geographic coverage areas for different map styles and zoom levels. Use when you need to display proper a",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_departures",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/departures",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "departures"
          ]
        },
        "description": "Tool to get next departures from transit stations. Returns upcoming departures with line information, destination, and real-time delays. Use when you need to find public transit departure times either",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"lang\": \"\",\n  \"sort\": \"\",\n  \"time\": \"\",\n  \"modes\": \"\",\n  \"timespan\": \"\",\n  \"in_location\": \"\",\n  \"maxPerBoard\": 0,\n  \"maxPerTransport\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_events_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Events API service. Use to verify if the Events API is operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_events_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE Events service. Use when you need to check the service version for compatibility or monitoring purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_features",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/features",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "features"
          ]
        },
        "description": "Tool to retrieve available map features per style for tile rendering. Use when you need to discover which features (environmental zones, congestion zones, POIs, vehicle restrictions) are supported by ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_geofences_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/geofences/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "geofences",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Geofences service. Use when you need to verify if the geofences API is operational before making other requests.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_geofences_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/geofences/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "geofences",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE Geofences service. Use when you need to check the service version for compatibility or monitoring purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking API service. Use when you need to verify if the service is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_incidents_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/incidents/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "incidents",
            "by",
            "id"
          ]
        },
        "description": "Tool to get details of a specific traffic incident by its ID. Returns full incident information including description, severity, and affected road segments. Use when you need comprehensive details abo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"originalId\": \"\",\n  \"X-Request-Id\": \"\",\n  \"locationReferencing\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "info"
          ]
        },
        "description": "Tool to get metadata about the HERE Raster Tile API v3. Returns information about accepted values of API parameters including supported image formats, sizes, styles, projections, resources, and zoom l",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_isolines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/isolines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "isolines"
          ]
        },
        "description": "Tool to calculate isolines. Use when you need reachable area polygons based on time, distance, or consumption ranges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"origin\": \"\",\n  \"range_type\": \"\",\n  \"destination\": \"\",\n  \"routingMode\": \"\",\n  \"range_values\": \"\",\n  \"departureTime\": \"\",\n  \"transportMode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_label_tile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/label/tile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "label",
            "tile"
          ]
        },
        "description": "Retrieves a map tile image with text labels using HERE Raster Tile API v3. Returns map tiles in various styles (day/night, grayscale, terrain) with street names, city names, and POI labels rendered in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"ppi\": 0,\n  \"lang\": \"\",\n  \"size\": 0,\n  \"zoom\": 0,\n  \"lang2\": \"\",\n  \"pview\": \"\",\n  \"format\": \"\",\n  \"scheme\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_labels_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Labels service. Use when you need to verify if the labels service is operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_labels_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Labels service. Use when you need to check the service version for compatibility or debugging purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "languages"
          ]
        },
        "description": "Tool to retrieve supported languages for map tile labels from HERE Raster Tile API. Use when you need to determine which language options are available for rendering map labels and text on different m",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_largedata_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/largedata/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "largedata",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking largedata service. Use to verify service availability before making other largedata API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_largedata_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/largedata/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "largedata",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE largedata tracking service. Use when you need to verify the service version number.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_locations_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/locations/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "locations",
            "health"
          ]
        },
        "description": "Tool to check the health status of HERE's locations tracking service. Use when you need to verify if the locations API is operational and responding correctly.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_locations_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/locations/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "locations",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Tracking Locations service. Use when you need to check the service version or verify service availability.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_map_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/map/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "map",
            "image"
          ]
        },
        "description": "Retrieves a static map image from HERE Map Image API v3. Returns a downloadable PNG image with customizable center/zoom, dimensions, style, and overlay markers/shapes. Useful for generating map snapsh",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": \"\",\n  \"style\": \"\",\n  \"format\": \"\",\n  \"geojson\": \"\",\n  \"overlay\": \"\",\n  \"features\": \"\",\n  \"scaleBar\": \"\",\n  \"parameters\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_map_tile_transit",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/map/tile/transit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "map",
            "tile",
            "transit"
          ]
        },
        "description": "Tool to request a map tile with public transport overlay from HERE Raster Tile API v3. Use when you need street map tiles with transit information displayed (buses, trains, tram lines, etc.). Returns ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"zoom\": 0,\n  \"style\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_matrix",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/matrix",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "matrix"
          ]
        },
        "description": "Computes routing matrices for batch distance and travel time calculations between multiple origins and destinations. Use this tool when you need to: - Calculate distances/times for all combinations of",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"origins\": \"\",\n  \"async_mode\": false,\n  \"destinations\": \"\",\n  \"departureTime\": \"\",\n  \"transportMode\": \"\",\n  \"summaryAttributes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_matrix_matrix_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/matrix/matrix/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "matrix",
            "matrix",
            "id"
          ]
        },
        "description": "Tool to retrieve the result of a successfully completed matrix calculation. Use when you have a matrixId from a previous matrix calculation request and need to fetch the computed distances and travel ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"matrixId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_meta_info_tile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/meta/info/tile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "meta",
            "info",
            "tile"
          ]
        },
        "description": "DEPRECATED: This action uses HERE Map Tile API v2 which was shut down in Q1 2025. The metainfo/metadata endpoint is not available in the replacement Raster Tile API v3. For tile metadata, consider usi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"pois\": false,\n  \"size\": 0,\n  \"zoom\": 0,\n  \"format\": \"\",\n  \"scheme\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_metadata_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "health"
          ]
        },
        "description": "Tool to retrieve the health status of the HERE Tracking metadata service. Use when you need to verify if the service is operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_metadata_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metadata/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metadata",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version number of the HERE Tracking service. Use when you need to verify the service version or check API compatibility.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_notifications_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Notifications service. Use when you need to verify if the notifications service is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_notifications_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/notifications/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "notifications",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE Notifications service. Use when you need to check the service version for compatibility or monitoring purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_openapi",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/openapi",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "openapi"
          ]
        },
        "description": "Tool to retrieve the OpenAPI 3 specification for the HERE Traffic API v7. Use when you need the complete API schema documentation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"X-Request-Id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_political_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/political/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "political",
            "views"
          ]
        },
        "description": "Tool to retrieve available geopolitical views for HERE map rendering. Returns a mapping of map resources to supported country-specific boundary representations (ISO 3166-1 alpha-2 codes). Use when you",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_problems_solution",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/problems/solution",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "problems",
            "solution"
          ]
        },
        "description": "Tool to retrieve the solution for a completed tour planning problem. Returns optimized tours with routes, stops, schedules, and statistics. Use after submitting a problem asynchronously to get the cal",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"problemId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "profile"
          ]
        },
        "description": "Tool to retrieve a specific matrix routing profile definition by its ID. Use when you need to inspect predefined routing configurations including transport mode, routing optimization, avoid options, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profileId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_profiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/profiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "profiles"
          ]
        },
        "description": "Tool to list all supported predefined routing profiles for matrix routing calculations. Use when you need to discover available profiles with their transport modes, routing optimizations, and constrai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"X-Request-Id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_registry_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/registry/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "registry",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Registry service. Use this to verify if the registry service is operational and responding normally.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_registry_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/registry/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "registry",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE Registry service. Use when you need to check the service version for compatibility or monitoring purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_reports_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/reports/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "reports",
            "health"
          ]
        },
        "description": "Tool to check the HERE Tracking service health status. Use when you need to verify if the service is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_resource_projection_zoom_column_row_format",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/resource/projection/zoom/column/row/format",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "resource",
            "projection",
            "zoom",
            "column",
            "row",
            "format"
          ]
        },
        "description": "Tool to retrieve a raster map tile image for a specific zoom level, column, and row from HERE Raster Tile API v3. Use when you need to fetch map tiles in various formats (PNG, JPEG) for different reso",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mv\": \"\",\n  \"ppi\": 0,\n  \"row\": 0,\n  \"lang\": \"\",\n  \"size\": 0,\n  \"zoom\": 0,\n  \"lang2\": \"\",\n  \"pview\": \"\",\n  \"style\": \"\",\n  \"column\": 0,\n  \"format\": \"\",\n  \"features\": \"\",\n  \"resource\": \"\",\n  \"projection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_routes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/routes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "routes"
          ]
        },
        "description": "Tool to calculate routes between waypoints supporting multiple transport modes (car, truck, pedestrian, bicycle, scooter, taxi, bus). Returns route geometry, turn-by-turn instructions, travel time, an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"via\": \"\",\n  \"lang\": \"\",\n  \"spans\": \"\",\n  \"units\": \"\",\n  \"origin\": \"\",\n  \"return\": \"\",\n  \"currency\": \"\",\n  \"arrivalTime\": \"\",\n  \"destination\": \"\",\n  \"routingMode\": \"\",\n  \"X-Request-ID\": \"\",\n  \"alternatives\": 0,\n  \"departureTime\": \"\",\n  \"transportMode\": \"\",\n  \"pedestrian_speed\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_rules_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/rules/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "rules",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Rules service. Use when you need to verify if the Rules API service is operational. Returns a simple health status message.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_rules_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/rules/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "rules",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Tracking Rules service. Use when you need to check the service version for compatibility or debugging purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_sensors_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sensors/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sensors",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Sensors service. Use this to verify that the service is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_sensors_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sensors/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sensors",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Tracking sensors service. Use when you need to check the service version information.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_shadows_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shadows/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shadows",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking Shadows service. Use when you need to verify if the shadows service is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_shadows_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shadows/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shadows",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Shadows tracking service. Use when you need to verify the service version number.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_shipments_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shipments/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shipments",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Shipments service. Use when you need to verify if the tracking service is operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_shipments_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shipments/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shipments",
            "version"
          ]
        },
        "description": "Tool to get the HERE shipments tracking service version. Use when you need to check the current version of the shipments API service.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_stations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stations"
          ]
        },
        "description": "Tool to search for transit stations around a location. Returns station names, locations, and available transit lines. Use when you need to find public transportation stations within a specific area or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"in_\": \"\",\n  \"name\": \"\",\n  \"method\": \"\",\n  \"return_\": \"\",\n  \"maxPlaces\": 0,\n  \"modesInPlace\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_status_status_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/status/status/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "status",
            "status",
            "id"
          ]
        },
        "description": "Check the status of an asynchronous tour planning optimization job. Use when you have submitted a tour planning problem and need to poll for completion. Returns the current status ('pending', 'inProgr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"statusId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_timestamp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timestamp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timestamp"
          ]
        },
        "description": "Tool to get the current server timestamp from HERE Tracking API. Use when you need a synchronized Unix epoch timestamp (seconds since 1970-01-01 00:00:00 UTC) from HERE servers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"X_Request_Id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_traces_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/traces/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "traces",
            "health"
          ]
        },
        "description": "Tool to check the health status of the HERE Tracking service. Use when you need to verify if the traces API is operational and performing as expected.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_traces_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/traces/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "traces",
            "version"
          ]
        },
        "description": "Tool to retrieve the current version of the HERE Tracking service. Use when you need to check the service version for compatibility or diagnostic purposes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_traffic_flow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/traffic/flow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "traffic",
            "flow"
          ]
        },
        "description": "Tool to retrieve real-time traffic flow data. Use when you need current congestion metrics for a specified area.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"advancedFeatures\": \"\",\n  \"useRefReplacements\": false,\n  \"locationReferencing\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_traffic_incidents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/traffic/incidents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "traffic",
            "incidents"
          ]
        },
        "description": "Tool to fetch real-time traffic incidents within a specified area. Use when you need up-to-date incident data for a geographic region.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"in\": \"\",\n  \"type\": \"\",\n  \"criticality\": \"\",\n  \"locationReferencing\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_traffic_tile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/traffic/tile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "traffic",
            "tile"
          ]
        },
        "description": "Retrieve a traffic flow overlay tile image showing real-time traffic conditions. Returns a PNG image tile that can be overlaid on maps to visualize traffic speed and congestion. Use this when you need",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"size\": 0,\n  \"zoom\": 0,\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_users_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users",
            "health"
          ]
        },
        "description": "Tool to check the HERE Tracking Users API service health status. Use this to verify that the service is operational before making other API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_users_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users",
            "version"
          ]
        },
        "description": "Tool to get the current version of the HERE tracking service. Use when you need to verify the service version or check service availability.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vector_tile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vector/tile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vector",
            "tile"
          ]
        },
        "description": "Retrieves protocol buffer encoded binary vector tiles using HERE Vector Tile API v2. Returns map tiles in OMV (Optimized Map for Visualization) format following the Map Vector Tile open specification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"z\": 0,\n  \"mv\": \"\",\n  \"layer\": \"\",\n  \"format\": \"\",\n  \"datasets\": \"\",\n  \"projection\": \"\",\n  \"if_none_match\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortile_docs_layers_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortile/docs/layers/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortile",
            "docs",
            "layers",
            "json"
          ]
        },
        "description": "Tool to retrieve OMV-2 layers documentation for HERE Vector Tiles. Returns comprehensive schema documentation including layer definitions, geometry types, field names, and possible values in TileJSON ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_copyright",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/copyright",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "copyright"
          ]
        },
        "description": "Tool to retrieve copyright information for HERE vector tiles. Returns copyright labels, alt text, zoom level ranges, and bounding boxes for both base and core map layers. Use when you need to display ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "info"
          ]
        },
        "description": "Tool to retrieve the current map version from HERE Vector Tiles Service. Use when you need the encoded map version identifier, which is valid for 24 hours and must be refreshed after that period.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "languages"
          ]
        },
        "description": "Tool to retrieve supported languages for vector map tiles from HERE Vector Tiles API. Use when you need to determine which language options are available for rendering vector map labels and text on di",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_openapi",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/openapi",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "openapi"
          ]
        },
        "description": "Tool to retrieve the OpenAPI specification for the HERE Vector Tiles API v2. Use when you need the complete API schema documentation for vector tile endpoints.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_proto",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/proto",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "proto"
          ]
        },
        "description": "Tool to retrieve a list of available protocol buffer formats from HERE Vector Tiles Service. Use when you need to discover available proto file formats for subsequent requests.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_proto_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/proto/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "proto",
            "name"
          ]
        },
        "description": "Tool to retrieve protocol buffer (.proto) file format definitions from HERE Vector Tiles API. Returns the specified .proto file that defines the data structure for vector tiles. Use when you need the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_vectortiles_pviews",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vectortiles/pviews",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vectortiles",
            "pviews"
          ]
        },
        "description": "Tool to retrieve available political views for HERE vector tiles. Returns lists of country codes that have disputed territories in base and core map data. Use when you need to determine which politica",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "version"
          ]
        },
        "description": "Tool to retrieve the version information of the HERE Traffic API. Use when you need to check the current API version or service version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"X-Request-Id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_waypoint_sequence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/waypoint/sequence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "waypoint",
            "sequence"
          ]
        },
        "description": "Optimizes the visit order of multiple waypoints between a fixed origin and destination. Returns the most efficient sequence to visit all intermediate points, minimizing either travel time or distance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"origin\": \"\",\n  \"return\": \"\",\n  \"waypoint\": \"\",\n  \"arrivalTime\": \"\",\n  \"destination\": \"\",\n  \"routingMode\": \"\",\n  \"alternatives\": false,\n  \"departureTime\": \"\",\n  \"transportMode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_weather_forecast_daily",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/weather/forecast/daily",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "weather",
            "forecast",
            "daily"
          ]
        },
        "description": "Get 7-day weather forecasts for any location worldwide. Returns either detailed segment-level forecasts (morning/afternoon/evening/night) or simplified daily summaries. Supports location queries by ci",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"zipCode\": \"\",\n  \"location\": \"\",\n  \"products\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_get_weather_observation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/weather/observation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "weather",
            "observation"
          ]
        },
        "description": "Tool to retrieve current weather observation. Use after determining a specific location to get up-to-date weather conditions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"zipCode\": \"\",\n  \"location\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_import_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "route"
          ]
        },
        "description": "Tool to import and calculate a route from GPS trace points. Accepts a polyline of coordinates and returns routing information including traffic delays, turn-by-turn instructions, and actions. Use when",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"via\": \"\",\n  \"lang\": \"\",\n  \"spans\": \"\",\n  \"trace\": \"\",\n  \"units\": \"\",\n  \"return\": \"\",\n  \"departureTime\": \"\",\n  \"transportMode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_locate_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/locate/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "locate",
            "device"
          ]
        },
        "description": "Determine device location based on WiFi and cellular network measurements. Supports 2G/3G/4G/5G cellular (GSM, WCDMA, TD-SCDMA, LTE, CDMA) and WLAN positioning. Use when you need to locate a device us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gsm\": \"\",\n  \"lte\": \"\",\n  \"cdma\": \"\",\n  \"wlan\": \"\",\n  \"wcdma\": \"\",\n  \"client\": {},\n  \"desired\": \"\",\n  \"tdscdma\": \"\",\n  \"fallback\": \"\",\n  \"required\": \"\",\n  \"confidence\": 0,\n  \"X-Request-ID\": \"\",\n  \"Content-Encoding\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_lookup",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lookup",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lookup"
          ]
        },
        "description": "Retrieves comprehensive details for a location using its HERE ID. Returns structured data including address, coordinates, categories, contacts, and references. Use this action when you have a HERE ID ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"lang\": \"\",\n  \"show\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_post_routes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/routes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "routes"
          ]
        },
        "description": "Calculate routes using POST method with extensive customization options via request body. Supports car, truck, pedestrian, bicycle, scooter, taxi, and bus modes. Use when you need to avoid specific ar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ev\": {},\n  \"via\": \"\",\n  \"lang\": \"\",\n  \"avoid\": {},\n  \"spans\": \"\",\n  \"units\": \"\",\n  \"origin\": \"\",\n  \"return\": \"\",\n  \"currency\": \"\",\n  \"arrivalTime\": \"\",\n  \"destination\": \"\",\n  \"routingMode\": \"\",\n  \"alternatives\": 0,\n  \"departureTime\": \"\",\n  \"transportMode\": \"\",\n  \"pedestrian_speed\": 0,\n  \"maxSpeedOnSegment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_reverse_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reverse/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reverse",
            "geocode"
          ]
        },
        "description": "Converts geographic coordinates (latitude, longitude) into human-readable addresses and location details. Use this tool when you need to: - Find the street address for a specific GPS coordinate - Iden",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"at\": \"\",\n  \"lang\": \"\",\n  \"show\": \"\",\n  \"_showNavAttributes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_submit_tour_planning_problem",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/tour/planning/problem",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "tour",
            "planning",
            "problem"
          ]
        },
        "description": "Submit a tour planning problem synchronously to solve vehicle routing problems with constraints like time windows, capacity, and vehicle types. Returns optimized tours for the fleet with routes, sched",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"plan\": {},\n  \"fleet\": {},\n  \"configuration\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_submit_tour_planning_problem_async",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/tour/planning/problem/async",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "tour",
            "planning",
            "problem",
            "async"
          ]
        },
        "description": "Submit a tour planning problem asynchronously for large-scale vehicle routing optimization. Returns a status ID to poll for results. Use this for complex problems with multiple vehicles, jobs, and con",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"plan\": {},\n  \"fleet\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_weather_alerts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/weather/alerts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "weather",
            "alerts"
          ]
        },
        "description": "Retrieve severe weather alerts for specified locations or routes. This tool queries the HERE Weather API to get active weather alerts including severe weather warnings, watches, and advisories. Suppor",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"body\": {},\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"apiKey\": \"\",\n  \"zipCode\": \"\",\n  \"location\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_weather_astronomy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/weather/astronomy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "weather",
            "astronomy"
          ]
        },
        "description": "Tool to fetch astronomical data (sunrise, sunset) for a specific location. Use when you need daily sun and moon event times.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"zipCode\": \"\",\n  \"location\": \"\",\n  \"hourlyDate\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "here_weather_forecast_hourly",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/weather/forecast/hourly",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "weather",
            "forecast",
            "hourly"
          ]
        },
        "description": "Tool to fetch hourly weather forecasts. Use when you need up to 48 hours of forecast data for a location.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"lang\": \"\",\n  \"units\": \"\",\n  \"apiKey\": \"\",\n  \"zipCode\": \"\",\n  \"location\": \"\",\n  \"products\": \"\",\n  \"hourlyDate\": \"\",\n  \"politicalView\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}