path stringlengths 3 57 | method stringclasses 5
values | operation_id stringlengths 7 61 | parameters listlengths 0 4 | responses dict | request_body dict |
|---|---|---|---|---|---|
/beep | POST | POST_beep | [] | {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "string"
}
}
}
},
"400": {
"description": "Bad command or error",
"content": {
"application/json": {
"schema": {
"type": "object"
}
... | {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"where": null,
".proplist": {
"type": "string"
},
".query": {
"type": "array"
},
"as-string": null,
"as-string-valu... |
/caps-man/aaa | GET | GET_caps-man-aaa | [
{
"name": "as-string",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "as-string-value",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "value-name",
"in": "query",
"schema": {
"type": "string"
}
}
] | {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "array"
}
}
}
},
"400": {
"description": "Bad command or error",
"content": {
"application/json": {
"schema": {
"type": "object"
}
... | {
"content": null,
"required": null
} |
/caps-man/aaa/edit | POST | POST_caps-man-aaa-edit | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":null,".proplist":{"t(...TRUNCATED) |
/caps-man/aaa/export | POST | POST_caps-man-aaa-export | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":{"type":"string"},".(...TRUNCATED) |
/caps-man/aaa/get | POST | POST_caps-man-aaa-get | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":null,".proplist":{"t(...TRUNCATED) |
/caps-man/aaa/{id} | GET | GET_caps-man-aaa-id | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {
"content": null,
"required": null
} |
/caps-man/aaa/{id} | PATCH | PATCH_caps-man-aaa-id | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":null,".proplist":nul(...TRUNCATED) |
/caps-man/aaa/print | POST | POST_caps-man-aaa-print | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":null,".proplist":{"t(...TRUNCATED) |
/caps-man/aaa/set | POST | POST_caps-man-aaa-set | [] | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"string"}}}},"400":{(...TRUNCATED) | {"content":{"application/json":{"schema":{"type":"object","properties":{"where":null,".proplist":{"t(...TRUNCATED) |
/caps-man/access-list | GET | GET_caps-man-access-list | [{"name":"as-string","in":"query","schema":{"type":"string"}},{"name":"as-string-value","in":"query"(...TRUNCATED) | {"200":{"description":"Success","content":{"application/json":{"schema":{"type":"array"}}}},"400":{"(...TRUNCATED) | {
"content": null,
"required": null
} |
End of preview. Expand in Data Studio
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:
{
"path": "/endpoint/path",
"method": "HTTP_METHOD",
"operation_id": "OPERATION_ID",
"parameters": [...],
"responses": {...},
"request_body": {...}
}
- Downloads last month
- 8