GET /api/health

Responses

200 Service status
application/json
ok boolean REQUIRED
service string REQUIRED
timestamp string REQUIRED
curl -X GET 'https://littledemo.com/api/health' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://littledemo.com/api/health', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://littledemo.com/api/health', headers=headers)print(response.json())
200 Response
{  "ok": true,  "service": "<string>",  "timestamp": "<string>"}
Ask a question... ⌘I