DocsCore APIsWarranty API

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

ParameterTypeRequiredDescription
device_idstringYesUnique identifier for the device
include_historybooleanNoInclude warranty claim history
formatstringNoResponse 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

CodeDescription
400Invalid device ID format
401Missing or invalid API key
404Device not found
429Rate limit exceeded
500Internal server error