@Eliot MacDonald Route Range version 2024-07-01-preview and all other latest Route APIs uses POST requests and input params should be included in the request body. Please note the params names are different from the previous API version 1.0. Please refer to the API doc for complete spec.
You Azure Maps account does need any additional resources to access the preview. If you are authenticating using subscription key, please include it in the request header. For example:
Header
Key: subscription-key
Value: <<YourKey>>
Endpoint
POST https://atlas.microsoft.com/route/range?api-version=2024-07-01-preview
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-111.88699784130823,
40.67520040263743
]
},
"properties": {
"departAt":"2025-07-25T21:00:00.000Z",
"timebudgetinsec": 300,
"isSimplifiedPolygon":false,
"travelMode":"driving",
"optimizeRoute":"fastestWithTraffic"
}
}