Skip to content
TAO v2.0 Intelligence Suite • Live Worldwide

Interactive
API Console

Explore and test the TrackPro API endpoints in real-time. Authenticate with your enterprise key, trigger live tracking, route optimization, theft prevention, predictive maintenance, carbon credit generation, revenue intelligence, and bulk fleet operations.

2.4M+ Devices Online • 100% Independent Infrastructure

POST /api/auth/login

Authenticate user and retrieve session token/info.

HEADERS

Content-Type: application/json

BODY (JSON)

{
  "email": "admin@example.com",
  "password": "secure_password_123"
}

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "user_id": "550e8400-e29b-41d4-a716-446655440000",
    "email": "admin@example.com",
    "role": "admin",
    "plan": "enterprise"
  },
  "timestamp": "2025-12-29T14:00:00+00:00"
}

POST /api/telemetry/ingest

High-volume bulk telemetry ingestion endpoint.

BODY (JSON)

[
  {
    "imei": "123456789012345",
    "latitude": -1.2921,
    "longitude": 36.8219,
    "speed": 45.5,
    "heading": 180.0,
    "accuracy": 2.5
  },
  {
    "imei": "987654321098765",
    "latitude": -1.2833,
    "longitude": 36.8167,
    "speed": 0.0
  }
]

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "processed": 2,
    "inserted": 2
  },
  "timestamp": "2025-12-29T14:00:05+00:00"
}

POST /api/intelligence/route

Route-Solara AI: Optimize single or multi-stop routes (26% fuel savings).

BODY (JSON)

{
  "fleet_id": 101,
  "waypoints": [
    {"id": "A", "lat": -1.2921, "lon": 36.8219},
    {"id": "B", "lat": -1.2833, "lon": 36.8167}
  ]
}

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "success": true,
    "optimization": {
      "optimized_sequence": [{"id": "A", "lat": -1.2921, "lon": 36.8219}, {"id": "B", "lat": -1.2833, "lon": 36.8167}],
      "estimated_duration_min": 30,
      "fuel_saved_percent": 12.5,
      "note": "Route optimized for minimum fuel consumption."
    }
  },
  "timestamp": "2025-12-29T14:05:00+00:00"
}

POST /api/intelligence/theft/report

Stolen-Shield 2.0: Report theft and trigger predictive recovery routing.

BODY (JSON)

{
  "imei": "123456789012345",
  "asset_value": 45000.00,
  "location": {"lat": -1.2921, "lon": 36.8219, "timestamp": "2025-12-29 14:30:00"}
}

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "success": true,
    "report": {
      "event_id": 42,
      "status": "active",
      "analysis": { "recovery_probability": 0.94, "suggested_action": "Activate engine cutoff..." }
    }
  },
  "timestamp": "2025-12-29T14:30:05+00:00"
}

POST /api/carbon/generate

Carbon-Track: Generate certified carbon credits from optimized routes.

BODY (JSON)

{
  "fleet_id": 101,
  "fuel_saved": 1500.5,
  "start": "2025-12-01",
  "end": "2025-12-31"
}

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "credit_id": 55,
    "fleet_id": 101,
    "period": "2025-12-01 to 2025-12-31",
    "fuel_saved_liters": 1500.5,
    "co2_saved_tons": 4.0213,
    "estimated_value_usd": 140.75,
    "status": "generated"
  },
  "timestamp": "2025-12-29T15:00:00+00:00"
}

GET /api/intelligence/revenue/fleet/{id}

Revenue-Orbit: Access recurring revenue intelligence and fleet metrics.

EXAMPLE RESPONSE

Status: 200 OK
{
  "success": true,
  "data": {
    "success": true,
    "report": {
      "metrics": [
        { "period": "2025-12-01", "total_generated": 2500.00, "recurring_revenue": 1200.00 }
      ],
      "insights": {
        "summary": "Revenue is trending up 12% MoM.",
        "recommendations": ["Increase carbon credit certification frequency."]
      }
    }
  },
  "timestamp": "2025-12-29T15:10:00+00:00"
}