Products
/
/
Routing
Proprietary Infrastructure
Route planning from A to B. And
everywhere in between.
Placematic Routing API calculates optimal routes for fleets, passengers, and businesses — with real-time traffic, truck restrictions, multi-stop optimization, and EV routing. Built on Placematic's own spatial infrastructure.
Optimization
single and multi-stop
Truck-aware
routing · EV routing · HOS compliance
Sub-500ms
Sub-500ms response · REST API · JSON
route.http
response.json
▶ Run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
POST /v1/route HTTP/1.1
Host: "api.placematic.io"
Authorization: "Bearer pk_live_••••"
Content-Type: "application/json"
{
"origin": "1600 Golf Rd, Rolling Meadows, IL",
"destination": "100 N Riverside Plaza, Chicago, IL",
"vehicle": "truck"
"avoid": ["toll_roads"]
"departure_time": "now"
}
→ Response 187ms · application/json
{
"distance_mi": 42.3,
"duration_min": 38,
"restrictions_avoided": 3,
"geometry": "encoded_polyline...",
}