Getting Started
OIDC, RBAC, and Billing
- Authentication & User Info
- GETGet OpenID Connect Configuration
- GETGet JSON Web Key Set (JWKS)
- GETAuthenticate using API Token
- GETGet Authenticated User Info (API)
- GETGet Authenticated User Info (OAuth)
- POSTEnable Two-Factor Authentication
- DELDisable Two-Factor Authentication
- POSTConfirm Two-Factor Authentication
- GETGet 2FA QR Code
- GETGet 2FA Secret Key
- GETGet 2FA Recovery Codes
- POSTGenerate New 2FA Recovery Codes
- GET
- 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
Authentication & User Info
Get JSON Web Key Set (JWKS)
Returns the JSON Web Key Set used for verifying JWT signatures.
GET
/
.well-known
/
jwks.json
Copy
Ask AI
curl --request GET \
--url https://api.altostrat.io/.well-known/jwks.json
Copy
Ask AI
{
"keys": [
{
"kid": "<string>",
"kty": "<string>",
"n": "<string>",
"e": "<string>",
"alg": "<string>",
"use": "<string>"
}
]
}
Response
200 - application/json
JWKS details.
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.altostrat.io/.well-known/jwks.json
Copy
Ask AI
{
"keys": [
{
"kid": "<string>",
"kty": "<string>",
"n": "<string>",
"e": "<string>",
"alg": "<string>",
"use": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.