Get general information about the backend
GET
/about
const url = 'https://example.com/api/v1/about';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/aboutResponses
Section titled “Responses”Return information
Media typeapplication/json
object
API
Version of the API (according to the specification)
string
backend
Version of the implementation
string
schema
Database schema version
integer
Examplegenerated
{ "API": "example", "backend": "example", "schema": 1}