Real-time connection monitoring and data logging
No status data available
No data available
No logs yet
Your OBD2 device sends data to the server via HTTP POST requests.
Step 1: Report Connection
POST https://myv5.co.uk/api/obd2/status
Content-Type: application/json
{
"connected": true,
"deviceId": "YOUR_DEVICE_ID"
}Step 2: Send Data (every 1-2 seconds)
POST https://myv5.co.uk/api/obd2/data
Content-Type: application/json
{
"rpm": 2500,
"engineTemp": 95,
"fuelLevel": 75,
"voltage": 14.2,
"throttle": 45,
"engineLoad": 60,
"maf": 15.5,
"speed": 80
// ... all other parameters
}💡 Testing:
Click "Simulate Data" button above to test the system without a real device.