The api Resource

The root api resource lists eXtremeDB version information and the paths of the registered web services.

For an overview see page eXtremeDB Web Service Resources

With the REST server started (listening on port 8083), the following http request will return a list of the available web services:

 
    http://localhost:8083/api
            
     

This resource displays the eXtremeDB version, build and revision numbers, and the path for each registered web service in the following format:

 
    {
        "version":
        {
            "major": 8,
            "minor": 0,
            "build": 1798,
            "revision": "unstable"
        },
        "services":

        [
    
            "\/api",

            "\/api/xsql",
            "\/api/db",
            "\/api/perf",
            "\/api/sql"
  
        ]

    }