Health

Check if the API is up and running.

GET/health

API Key

Stored locally, never sent to servers

Health
const options = {  method: 'GET',  headers: {},};fetch('https://api.mem-brain.io/health', options)  .then(res => res.json())  .then(res => console.log(res))  .catch(err => console.error(err));
{
"status": "ok",
"version": "1.0.0"
}