Skip to main content
GET
/
devices
/
{deviceId}
Get device by ID
curl --request GET \
  --url https://dashboard.hologram.io/api/1/devices/{deviceId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": {
    "id": 1234565,
    "orgid": 23456,
    "name": "Warehouse Device (03969)",
    "type": "Unknown",
    "whencreated": "2022-11-18 17:56:52",
    "phonenumber": "",
    "phonenumber_cost": "0.0000",
    "tunnelable": 1,
    "imei": "123456789012345",
    "imei_sv": "123456789012346",
    "hidden": 0,
    "tags": [],
    "links": {
      "cellular": [
        {
          "id": 1234567,
          "sim": "89123400000000303969",
          "imsi": 222013421950396,
          "msisdn": "999013421950396",
          "carrierid": 8,
          "state": "LIVE",
          "whenclaimed": "2023-01-13 18:32:25",
          "whenexpires": "2023-02-12 18:32:25",
          "overagelimit": -1,
          "data_threshold": -1,
          "smslimit": -1,
          "pin": "8275",
          "puk": "09580157",
          "apn": "hologram",
          "plan": {
            "id": 125,
            "zone": "1",
            "name": "US T-Mobile Only Flat Rate",
            "data": 0,
            "cost": "0.0001",
            "sms": "0.0001",
            "overage": "0.0001",
            "account_tier": "BASE"
          },
          "last_network_used": "",
          "last_connect_time": "",
          "cur_billing_data_used": 0,
          "last_billing_data_used": 0
        },
        {
          "id": 4417728,
          "sim": "89123400007773778481",
          "imsi": 311480796183610,
          "msisdn": "15224614774",
          "carrierid": 12,
          "state": "LIVE",
          "whenclaimed": "0000-00-00 00:00:00",
          "whenexpires": "2023-02-12 18:32:25",
          "overagelimit": -1,
          "data_threshold": -1,
          "smslimit": -1,
          "pin": "",
          "puk": "",
          "apn": "hologram",
          "plan": {
            "id": 125,
            "zone": "1",
            "name": "US T-Mobile Only Flat Rate",
            "data": 0,
            "cost": "0.0001",
            "sms": "0.0001",
            "overage": "0.0001",
            "account_tier": "BASE"
          },
          "last_network_used": "",
          "last_connect_time": "",
          "cur_billing_data_used": 0,
          "last_billing_data_used": 0
        }
      ]
    },
    "model": "EC21 Series",
    "manufacturer": "Quectel "
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Path Parameters

deviceId
integer
required

Single device ID.

Example:

1234567

Query Parameters

orgid
integer
Example:

144

includePricing
integer
Example:

1

Response

200 - application/json

A device object

data
object
success
boolean

Whether the request was successful or not

Example:

true