tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

status.md (1007B)


`status` - [General API](../README.md#general-api)

The status method is used to ensure the server is reachable and to determine what features of different server APIs are enabled.

HTTP Request

GET /api/status

Response

{
  "version_string": "String",
  "import_results_enabled": "Boolean",
  "reports_enabled": "Boolean",
  "read_sessions_enabled": "Boolean"
}

Example

GET /api/status
{
  "version_string": "v2.0.0",
  "import_results_enabled": false,
  "reports_enabled": true,
  "read_sessions_enabled": false
}