Skip to main content

API Documentation

Everything you need to integrate with the ACM Destiny fleet & telematics platform — guides on the left, the complete REST reference on the right.

Make your first call

Every endpoint lives under /api/v1 and uses a bearer token.

# 1. Log in — the token comes back in the Authorization response header
curl -X POST https://www.acmdestiny.net/api/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{"username":"you","password":"••••"}'

# 2. Call an endpoint with the token
curl https://www.acmdestiny.net/api/v1/units/listing \
  -H "Authorization: bearer YOUR_TOKEN"

New here? Follow Getting Started, then read Authentication for the token-refresh lifecycle.

Explore by collection

Popular guides