Warranty API
Check warranty status, validate coverage, and manage warranty claims for devices in your inventory.
Endpoint
GET https://api.droplixer.com/v1/warranty/{device_id}Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| device_id | string | Yes | Unique identifier for the device |
| include_history | boolean | No | Include warranty claim history |
| format | string | No | Response format: json or xml (default: json) |
Response
JSON
{
"status": "active",
"device_id": "DEV-2024-001",
"warranty_type": "standard",
"start_date": "2024-01-15",
"end_date": "2025-01-15",
"coverage": {
"hardware": true,
"software": true,
"accidental": false
},
"remaining_days": 320
}Error Codes
| Code | Description |
|---|---|
| 400 | Invalid device ID format |
| 401 | Missing or invalid API key |
| 404 | Device not found |
| 429 | Rate limit exceeded |
| 500 | Internal server error |