Endpoint Examples

/meta

Get info on latest version, and attribution text.

GET /meta

Get service metadata, including latest version, and attribution text. Caching is encouraged, but the metadata can change weekly.

Code Examples

curl --request GET \
     --url https://api.lightcast.io/titles/meta \
     --header 'accept: application/json' \
     --header 'Authorization: Bearer <ACCESS_TOKEN>'

Response Examples

{
  "data": {
    "attribution": {
      "title": "Lightcast Titles",
      "body": "Lightcast Titles is a comprehensive library of job titles defined by Lightcast."
    },
    "latestVersion": "4.30"
  }
}