Test

Test Endpoint

[DEPRECATED] use /health/liveliness instead.

A test endpoint that pings the proxy server to check if it's healthy.

Parameters: request (Request): The incoming request.

Returns: dict: A dictionary containing the route of the request URL.

GET/test
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/test', {
    method: 'GET',
    headers: {},
});
const data = await response.json();