Top-Level Folder

The /api URL serves as a root folder for accessing the REST API.

URL

/api

HTTP Method

GET

HTTP Response

200 OK

Example

GET /api HTTP/1.1
Host: 10.4.219.229
 
HTTP/1.1 200 OK
Content-Type: application/json
{
    "versions": [
        {
            "id": "v1",
            "status": "stable",
            "url": "/api/v1"
        }
    ]
}