Core functionalities for the GAIA API, such as configuration and health check.

Status Check

This endpoint allows you to check the status of the server. It is used to verify if the GAIA API is up and running.

No authentication is required to call this endpoint.

Parameters

This endpoint does not require any parameters.

Example

GET /es/api/

Response

Successful Response [200]

GAIA API Running

Get Config

This endpoint retrieves the configuration of the GAIA API.

Parameters

This endpoint does not require any parameters.


Example

GET /es/api/v1/core/config

Response

Successful Response [200]

{
  "host": "string",
  "port": 8085,
  "workers": 1,
  "cors": {
    "allow_origins": [],
    "allow_credentials": true,
    "allow_methods": [
      "*"
    ],
    "allow_headers": [
      "*"
    ],
    "expose_headers": [
      "*"
    ],
    "max_age": 600
  },
  "security": {
    "authentication": {
      "enabled": false,
      "type": "local",
   .       .
       .}