frAI is a high-performance route optimization engine wrapped in a clean REST API. It assigns and sequences delivery orders across your rider fleet in milliseconds.
Send your current orders and riders via a single POST request. frAI handles the rest.
POST a JSON payload with pending orders (restaurant + customer coordinates) and available riders (position + speed).
The engine evaluates thousands of possible route combinations to find the best assignment for every rider.
Travel times are computed on actual road networks — accounting for one-way streets, speed limits, and road topology.
Get back a complete instruction plan: each rider's ordered stops, with coordinates and timing — ready to dispatch.
Everything you need to integrate intelligent routing into your delivery platform.
Proprietary algorithm that finds near-optimal solutions even for complex, multi-rider, multi-order scenarios.
Travel times reflect actual road networks — one-way streets, speed limits, and real-world road topology included.
One endpoint. JSON in, JSON out. No SDK required — integrate from any language or platform in minutes.
The C++ core executes in milliseconds. Even with dozens of concurrent orders, results arrive in under a second.
API key authentication, per-key call limits, rate limiting, and automatic IP banning for suspicious activity.
Internal parameters can be adjusted to balance response speed against solution quality for your specific use case.
// Minimal request — 2 orders, 1 rider { "current_time": "2026-06-04T12:00", "riders": [ { "id": "rider_1", "lat": 45.437, "lon": 12.335, "speed_kmh": 20 } ], "orders": [ { "id": "order_1", "restaurant": { "lat": 45.440, "lon": 12.332 }, "customer": { "lat": 45.433, "lon": 12.340 } } ] } // Response — rider instruction plan { "riders": [ { "id": "rider_1", "instructions": [ { "action": "pickup", "order_id": "order_1", "eta": "12:04" }, { "action": "delivery", "order_id": "order_1", "eta": "12:09" } ] } ] }
Whether you're building a delivery platform, a logistics tool, or just want to explore what frAI can do for your use case — drop me an email and I'll get back to you.
✉️ stugotstechinfo@gmail.com