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
ARP and Devices
- Devices
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
- Scan Results
- CVE Management
- On-Demand 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 a list of routers
Returns a list of MikroTik routers belonging to the team associated with the bearer token.
GET
/
api
/
routers
Copy
Ask AI
curl --request GET \
--url https://api.altostrat.io/api/routers \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"status": "<string>",
"data": [
{
"id": "<string>",
"identity": "<string>",
"serial_number": "<string>",
"software_version": "<string>",
"software_id": "<string>",
"has_pulse": true,
"uptime": "<string>",
"last_seen": "<string>",
"last_seen_from": "<string>",
"routerboard": true,
"model": "<string>",
"board_name": "<string>",
"last_seen_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Use the Authorization: Bearer <token>
header format
Response
200 - application/json
List of routers
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.altostrat.io/api/routers \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"status": "<string>",
"data": [
{
"id": "<string>",
"identity": "<string>",
"serial_number": "<string>",
"software_version": "<string>",
"software_id": "<string>",
"has_pulse": true,
"uptime": "<string>",
"last_seen": "<string>",
"last_seen_from": "<string>",
"routerboard": true,
"model": "<string>",
"board_name": "<string>",
"last_seen_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.