TAC Database API
Identify the brand, model, and chipset of any mobile device from its TAC or IMEI. REST API, JSON responses, coverage of several hundred thousand GSMA TACs.
Updated March 2026 Β· Base URL: https://imei.hicelltek.com/api/v1
Endpoint. TAC Lookup
/api/v1/tac/lookup Looks up a TAC (8 digits) or IMEI (15 digits) in the database and returns device information.
Request
Content-Type: application/json
Accept: application/json {
"query": "35391012",
"lang": "en"
} | Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | TAC (8 digits) or IMEI (15 digits) |
| lang | string | No | "fr" or "en" (default: "en") |
| captchaToken | string | Web only | Cloudflare Turnstile token (required via the web tool) |
Response
Success (200 OK)
{
"found": true,
"tac": "35391012",
"brand": {
"name": "Samsung",
"slug": "samsung"
},
"model": "Galaxy S24 Ultra",
"model_info": "SM-S928B/DS",
"year": "2024",
"chipset": "Qualcomm Snapdragon 8 Gen 3"
} | Field | Type | Description |
|---|---|---|
| found | boolean | true if the TAC exists in the database |
| tac | string | The looked-up TAC (8 digits) |
| brand | object | Manufacturer: name (display name) + slug |
| model | string | Commercial model name |
| model_info | string | Internal reference (manufacturer model number) |
| year | string | null | Device release year |
| chipset | string | null | Chipset/processor (Qualcomm, MediaTek, Exynosβ¦) |
Errors
| HTTP Code | Cause |
|---|---|
| 200 | "found": false. TAC not found in the database |
| 422 | Validation failed (invalid format, missing CAPTCHA) |
| 429 | Rate limited, too many requests |
| 503 | Service temporarily unavailable |
Use Cases
Identify network capabilities (bands, CA, MIMO, VoLTE) of devices on your network from TAC traces.
Verify device authenticity, confirm the exact model, and detect counterfeits from the IMEI.
Automatically enrich your device inventory with manufacturer, chipset, and year data via the TAC.
Aggregate TACs to analyze model, chipset, and manufacturer distribution in your device fleet.
Frequently Asked Questions
Is the TAC Lookup API free?
How many TACs are in the database?
Does the API return full technical specifications?
What is the rate limit?
Does the API support full IMEI lookups?
Is the TAC data GSMA-compliant?
Related Resources
Contact us for an API plan tailored to your volumes: integration support, custom quotas, and technical assistance.