File size: 681 Bytes
4654794
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
license: mit
---
# MikroTik RouterOS REST API Dataset

This dataset contains the complete OpenAPI 2.1 specification for MikroTik RouterOS REST API (v7.13.5) converted to JSONL format for improved querying and analysis.

## Contents
- REST API endpoints
- HTTP methods (GET, POST, PATCH, DELETE)
- Request/response schemas
- Authentication requirements
- Parameter specifications

## Format
- File: `mikrotik_api.jsonl`
- Each line: Complete JSON object representing one API endpoint
- Key fields:
 ```json
 {
   "path": "/endpoint/path", 
   "method": "HTTP_METHOD",
   "operation_id": "OPERATION_ID",
   "parameters": [...],
   "responses": {...},
   "request_body": {...}
 }