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

curl --request GET \
     --url https://api.lightcast.io/salary-boosting-skills/status \
     --header 'accept: application/json' \
     --header 'authorization: Bearer <Access_Token>'

Response Examples

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