DEV|API DOCS

Developer Documentation

Integrate DeepRoute Pro's AI routing engine into your stack via REST or gRPC. Deploy in under 5 minutes.

Base URL: https://api.deeproute.pro
POST/v1/routes/compute

Compute an optimal route between origin and destination nodes.

GET/v1/routes/{id}

Retrieve a previously computed route by ID.

POST/v1/nodes/register

Register a new edge node in the routing mesh.

GET/v1/topology/graph

Fetch the current routing topology graph for a region.

POST/v1/batch/optimize

Batch optimize multiple routes in a single request.

Quick Start

curl -X POST https://api.deeproute.pro/v1/routes/compute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "origin": { "lat": 37.7749, "lng": -122.4194 },
    "destination": { "lat": 37.7849, "lng": -122.4094 },
    "constraints": { "avoid_tolls": true, "max_latency_ms": 500 }
  }'