Endpoint Examples

/status

Service status (health)

GET /status

Get the health of the service. Be sure to check the healthy attribute of the response, not just the status code. Caching not recommended.

Code Examples

{
  "method": "GET",
  "url": "https://api.lightcast.io/global-profiles/status",
  "show": true,
  "headers": [
    {
      "name": "Authorization",
      "value": "Bearer <ACCESS_TOKEN>"
    }
  ],
  "queryString": []
}

Response Examples

{
  "data": {
    "message": "Service is healthy",
    "healthy": true
  }
}