# Check IMEI Validate and check the status of a device IMEI (International Mobile Equipment Identity). Used for device authentication and security. Endpoint: POST /check-imei Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `imei` (string, required) IMEI number to validate. Example: "ED9F012A-3991-4BF5-83EB-685F56FA57B7" ## Response 200 fields (application/json): - `status` (string, required) Outcome of the request. Example: "success" - `message` (string, required) Summary of the IMEI check. Example: "IMEI check result" - `valid` (boolean, required) True if the IMEI is valid and known. Example: true - `device_type` (string) Classified type of the device for the IMEI (e.g., smartphone). Example: "smartphone" ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters"