Endpoint Examples

/meta

GET /metadata

Get service metadata, including model taxonomy and dimension information along with attribution text.

Code Examples

curl --request GET \
  --url https://api.lightcast.io/projected-skill-growth/meta \
  --header 'Authorization: Bearer <ACCESS_TOKEN>'

Response Examples

{
  "data": {
    "attribution": {
      "title": "Projected Skill Growth",
      "body": "The Lightcast Projected Skill Growth API provides an interface to get the projected growth of demand for a skill."
    },
    "modelVersions": {
      "projectedSkillGrowth": "2.0.0"
    },
    "taxonomyVersions": {
      "skill": "9.40",
      "soc": "soc_2021",
      "lot": "7.14.0"
    },
    "dimensions": [
      "skill",
      "skillcategory",
      "skillsubcategory"
    ]
  }
}