Skip to main content
GET
/
sites
/
{siteId}
/
oem
Get Site OEM Information
curl --request GET \
  --url https://api.altostrat.io/sites/{siteId}/oem \
  --header 'Authorization: Bearer <token>'
{
  "model": "RB4011iGS+RM",
  "serial_number": "ABCD0123EFGH",
  "board_name": "RouterBOARD 4011iGS+",
  "cpu": "arm a15",
  "cpu_core_count": 4,
  "cpu_frequency_mhz": 1400,
  "ram_size_mb": 1024,
  "routeros_version": "7.1.1",
  "license_level": 5
}

Authorizations

Authorization
string
header
required

A JWT issued by Altostrat's authentication service, containing user and organization claims.

Path Parameters

siteId
string
required

The unique identifier for the site (router).

Response

Successfully retrieved OEM hardware and software details for the site.

Detailed hardware and software information for a MikroTik device.

model
string

The specific model name of the MikroTik hardware.

Example:

"RB4011iGS+RM"

serial_number
string

The unique serial number of the device hardware.

Example:

"ABCD0123EFGH"

board_name
string

The board name as reported by RouterOS.

Example:

"RouterBOARD 4011iGS+"

cpu
string

The CPU architecture and model.

Example:

"arm a15"

cpu_core_count
integer

The number of CPU cores.

Example:

4

cpu_frequency_mhz
integer

The clock speed of the CPU in megahertz.

Example:

1400

ram_size_mb
integer

The total amount of RAM in megabytes.

Example:

1024

routeros_version
string

The version of RouterOS currently installed on the device.

Example:

"7.1.1"

license_level
integer

The RouterOS software license level, which determines feature availability.

Example:

5