Skip to main content
GET
/
api
Health check
curl --request GET \
  --url https://mcp.echozero.app/api
import requests

url = "https://mcp.echozero.app/api"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://mcp.echozero.app/api', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
const options = {method: 'GET'};

fetch('https://mcp.echozero.app/api', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://mcp.echozero.app/api"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
{
  "success": true,
  "data": {
    "Status": "Success"
  }
}

Headers

x-signature
string

HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD + path + body). Optional -- when omitted, HMAC verification is skipped.

x-timestamp
string

Request timestamp in epoch milliseconds. Required when x-signature is provided. Rejected if drift exceeds 5 minutes.

Response

200 - application/json

Server is healthy.

success
boolean
required
Example:

true

data
object
required

Endpoint-specific payload