Skip to main content

Get your skill graph

GET /api/v1/learning-graph/my-graph
Returns your mastery scores for all skills in your track.
{
  "data": {
    "skills": [
      {
        "slug": "rag",
        "name": "Retrieval-Augmented Generation",
        "mastery": 0.74,
        "last_reviewed": "2026-03-01T14:22:00Z",
        "is_decaying": false
      }
    ],
    "zpd_recommendations": [
      "vector-search",
      "pgvector",
      "embedding-models"
    ]
  }
}

Get ZPD recommendations

GET /api/v1/learning-graph/zpd
Returns the top 5 skills currently in your Zone of Proximal Development.

Get a specific skill

GET /api/v1/learning-graph/skills/{slug}

Skill freshness (Industry Pulse)

GET /api/v1/learning-graph/skills/{slug}/freshness
{
  "data": {
    "slug": "rag",
    "freshness_score": 87.4,
    "trend": "rising",
    "last_updated": "2026-03-07T03:00:00Z"
  }
}