Skip to main content
POST
/
tools
/
get-device-info
{
  "imei": "356938035643809",
  "tac": "35693803",
  "esim": true,
  "manufacturer": "Apple",
  "model": "A2653",
  "marketingName": "iPhone 15 Pro"
}

Authorizations

X-API-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Headers

X-Idempotency-Key
string

A unique key to ensure idempotency of requests. If a request with the same key has already been processed, the same result will be returned. The key must be unique for each distinct operation. Keys are expired after 24 hours, but we recommend using a new key for each request.

Modified requests with the same idempotency keys are rejected with a 409 Conflict status code.

Maximum length: 256

Body

application/json

Device IMEI to look up.

Request to get device information by IMEI.

imei
string
required

The International Mobile Equipment Identity of the device.

Example:

"356938035643809"

Response

Device information retrieved.

Information about a device based on its IMEI.

imei
string
required

The device IMEI that was checked.

Example:

"356938035643809"

esim
boolean
required

Whether the device supports eSIM.

Example:

true

tac
string

The device TAC (Type Allocation Code), which is the first 8 digits of the IMEI identifying the device model and manufacturer.

Example:

"35693803"

manufacturer
string

Device manufacturer.

Example:

"Apple"

model
string

Device model.

Example:

"A2653"

marketingName
string

Device marketing name.

Example:

"iPhone 15 Pro"

I