Query taxonomies, metrics, available subjects, and per-question knowledge layer metadata.
The Metadata API allows developers to inspect curriculum mappings, topic hierarchies, available subject dimensions, and platform metrics. Additionally, when calling the L1 Questions API with a Developer or higher plan, metadata is automatically eager-loaded into each question payload inside the metadata property.
Explore the available endpoints for taxonomy discovery and platform metrics:
When eager-loaded inside a question resource, the metadata object contains the following properties:
Example output for GET /subjects/mathematics/topics:
{
"data": [
{
"name": "algebra",
"displayName": "Algebra",
"questionCount": 120,
"subtopics": [
{
"name": "quadratic-equations",
"displayName": "Quadratic equations",
"questionCount": 45
}
]
}
]
}