Build custom integrations with our comprehensive REST API. Access real-time fleet data, automate workflows, and create powerful applications.
Modern REST architecture with predictable resource-oriented URLs
OAuth 2.0 and API key authentication with role-based access
Get instant notifications for events like alerts and status changes
Clean, consistent JSON format with comprehensive error handling
Essential API endpoints to get you started
/vehiclesList all vehicles in your fleet
/vehicles/{id}/locationGet real-time location of a vehicle
/vehicles/{id}/historyGet historical tracking data
/alertsCreate custom alerts
/reports/generateGenerate custom reports
/driversList all drivers
curl -X GET https://api.wisee.com/v1/vehicles \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"const response = await fetch('https://api.wisee.com/v1/vehicles', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const vehicles = await response.json();import requests
response = requests.get(
'https://api.wisee.com/v1/vehicles',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
)
vehicles = response.json(){
"data": [
{
"id": "veh_123abc",
"name": "Truck 01",
"make": "Ford",
"model": "F-150",
"year": 2022,
"status": "active",
"location": {
"lat": 37.7749,
"lng": -122.4194,
"speed": 45.5,
"heading": 180,
"timestamp": "2025-01-11T10:30:00Z"
},
"driver": {
"id": "drv_456def",
"name": "John Smith"
}
}
],
"meta": {
"total": 25,
"page": 1,
"per_page": 10
}
}Subscribe to webhooks instead of polling for real-time updates
Never expose API keys in client-side code or repositories
Implement proper error handling and retry logic
Use batch endpoints when fetching multiple resources
Get started faster with our official SDKs
npm install wisee
pip install wisee
gem install wisee
go get wisee.io/sdk
Get your API key and build powerful fleet integrations
We use cookies to enhance your browsing experience, serve personalized content, and analyze our traffic. Accept all or customize your preferences.