Returns the available API route groups of the node.
GEThttp://127.0.0.1:14265/api/routes
Returns the available API route groups of the node.
Request
Responses
- 200
- 403
- 500
- 503
Successful operation
- application/json
- Schema
- Example (from schema)
- default
Schema
routes string[]required
{
"routes": [
"string"
]
}
{
"routes": [
"core/v2",
"dashboard-metrics/v1",
"debug/v1"
]
}
Unsuccessful operation: indicates that the endpoint is not available for public use.
Unsuccessful operation: indicates that an unexpected, internal server error happened which prevented the node from fulfilling the request.
Unsuccessful operation: indicates that the node isn´t healthy.
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'http://127.0.0.1:14265/api/routes' \
-H 'Accept: application/json'
ResponseClear