Catalog/validate-imei

Validation

IMEI validate & parse API

Validates a 15-digit IMEI Luhn check digit and parses the TAC (Type Allocation Code), reporting body, and serial. Answers 'Is this IMEI valid?', 'What is the TAC of this device?'.

Price$0.02per request
MethodPOST
Route/v1/validate/imei
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
imeimobileluhncheck-digitvalidatedevicetaccellulargsm
API URLhttps://x402.hexl.dev/v1/validate/imei
Integration docs
Example request
{
  "imei": "490154203237518"
}
Example response
{
  "valid": true,
  "reason": "Valid IMEI (Luhn OK); TAC/serial parsed.",
  "normalized": "490154203237518",
  "checkDigit": {
    "expected": 8,
    "actual": 8
  },
  "tac": "49015420",
  "reportingBodyId": "49",
  "serial": "323751"
}
Input schema
{
  "type": "object",
  "required": [
    "imei"
  ],
  "properties": {
    "imei": {
      "type": "string",
      "description": "15-digit International Mobile Equipment Identity.",
      "examples": [
        "490154203237518"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}