Manifold API

Access Manifold data through our REST API and connect it to the systems your team already uses. Build integrations, automate workflows, and bring verified fleet data into your own applications.

QUICKSTART

See the API in action

Authenticate with your API token and connection ID, then start retrieving fleet data with a simple REST request.

REST API
JSON-encoded responses over HTTPS.
API key authentication
Authenticate requests using your Manifold API token.
Connection-aware
Specify the provider connection you want to retrieve data from.
View the Quickstart →
Request
Bash
curl --request GET \
'https://api.analytics.autos/vehicles' \
--header 'x-api-key: YOUR-API-TOKEN' \
--header 'Connection-Id: YOUR-CONNECTION-ID'
Response
200 OK
{
  "status": 200,
  "message": "Success",
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "vin": "1HGCM82633A123456",
      "name": "Company Truck 01",
      "status": "active",
      "lastGps": {
        "latitude": 37.7749,
        "longitude": -122.4194
      }
    }
  ]
}

Need help?

Can’t find what you need? Get in touch with the Manifold team and we’ll help you with your integration.

Contact Support →