Getting Started
OIDC, RBAC, and Billing
- Authentication & User Info
- User Management
- Ancillary Services
- Teams
- API Credentials
- Roles & Permissions
- Billing - Account
- Billing - Payment Methods
- Billing - Tax IDs
- Billing - Invoices
- Billing - Subscriptions
- Internal M2M
Developers API
- Sites
- Health
- Synchronous API
- Asynchronous API
- Port Forwards
Asynchronous (MikroTik)
- Bootstrap & Adoption
- Heartbeat
- Jobs
- Runbooks
- Sites
- Internal
- SFTP Auth
Backups
- Site Backups
BGP Feeds And Content Filter
- DNS Policy
- Tunnels & Sites
- Categories & Applications
- BGP Policy
- IP Lists
- Internal Hooks
Captive Portal
- IDP Integrations
- Instances
- Walled Garden
Control Plane Filter
- Policies
- Sites
- Checkin
- Router Commands
- Internal
- Transient Access
- Transient Forward
- Credentials
- Scheduler
CVE Scans
- Scan Schedules
- Scans
Elastic IP Addressing
- Subnets
- IP Addresses (L2TP)
Logging
- Log Events
Metrics
- Syslog
- ARP
- Interfaces
- MikrotikStats
- Content
- Tunnels
Monitoring & Health
- Faults
Notifications
- Topics
- Groups
Scheduled Scripts
- Community Scripts
- Scheduled Scripts
- AI Generation
Schedules
- Schedules
- Internal
SLA Reports
- SLA Schedules
- SLA Reports
VPN
- Servers
- Sites
- Instances
- Peers
- VPN Client Tokens
- Internal
WAN Failover
- Failover
- Tunnel
- Services
- Gateway
Webhooks
- Integrations
Sites
Retrieve OEM information
Sites
Retrieve OEM information
Provides manufacturer data (model, CPU, OS license, etc.) for a given router.
GET
/
api
/
routers
/
{router_id}
/
oem
curl --request GET \
--url https://api.altostrat.io/api/routers/{router_id}/oem \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"data": {
"category": "<string>",
"slug": "<string>",
"archived": true,
"name": "<string>",
"model": "<string>",
"short_description": "<string>",
"product_details": "<string>",
"architecture": "<string>",
"cpu": "<string>",
"cpu_core_count": "<string>",
"cpu_nominal_frequency": "<string>",
"switch_chip_model": "<string>",
"router_os_license": "<string>",
"operating_system": "<string>",
"ram": "<string>",
"storage_size": "<string>",
"storage_type": "<string>",
"mtbf": "<string>",
"tested_ambient_temperature": "<string>",
"price": "<string>",
"banner": "<string>",
"thumbnail": "<string>"
}
}
Authorizations
Use the Authorization: Bearer <token>
header format
Path Parameters
The UUID of the router.
Response
200 - application/json
OEM info object
curl --request GET \
--url https://api.altostrat.io/api/routers/{router_id}/oem \
--header 'Authorization: Bearer <token>'
{
"status": "<string>",
"data": {
"category": "<string>",
"slug": "<string>",
"archived": true,
"name": "<string>",
"model": "<string>",
"short_description": "<string>",
"product_details": "<string>",
"architecture": "<string>",
"cpu": "<string>",
"cpu_core_count": "<string>",
"cpu_nominal_frequency": "<string>",
"switch_chip_model": "<string>",
"router_os_license": "<string>",
"operating_system": "<string>",
"ram": "<string>",
"storage_size": "<string>",
"storage_type": "<string>",
"mtbf": "<string>",
"tested_ambient_temperature": "<string>",
"price": "<string>",
"banner": "<string>",
"thumbnail": "<string>"
}
}