You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Core functionalities for the Search 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 Search 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]

Search API Running

Get Config

This endpoint retrieves the configuration of the Search 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",
   .       .
       .}



  • No labels