Enter your vendor secret to access the dashboard
GlobalVin Report Service
| Plan | Quantity | Price Each | Subtotal |
|---|---|---|---|
| Total Due | $0.00 | ||
| VIN | Plan | Price | Date | |
|---|---|---|---|---|
| Loading... | ||||
Base URL: https://manual.globalvin.co/api/admin
Submit a new report request
// Request
POST /api/admin/request-report
Content-Type: application/json
{
"email": "customer@example.com",
"vin": "WVWZZZ3CZWE123456",
"plan": "basic" | "standard" | "premium",
"secret": "YOUR_VENDOR_SECRET"
}
// Response
{
"success": true,
"message": "Your basic report request has been submitted",
"data": {
"requestId": "...",
"email": "customer@example.com",
"vin": "WVWZZZ3CZWE123456",
"plan": "basic",
"status": "pending"
}
}
Check your usage and costs
// Response
{
"success": true,
"data": {
"basic": 5,
"standard": 3,
"premium": 2,
"total": 10,
"costs": {
"basic": 49.95,
"standard": 44.97,
"premium": 49.98,
"total": 144.90
},
"prices": {
"basic": 9.99,
"standard": 14.99,
"premium": 24.99
}
}
}
Check service status (no auth required)
// Response
{
"success": true,
"status": "online",
"serviceEnabled": true
}