> ## Documentation Index
> Fetch the complete documentation index at: https://docs.learningcommons.org/llms.txt
> Use this file to discover all available pages before exploring further.

# REST API

export const EarlyAccess = ({isBreaking = true}) => {
  return <div className="eyebrow-callout not-prose rounded-xl border border-gray-200/80 p-5 dark:border-white/10" style={{
    marginBottom: "1rem",
    borderRadius: "4px"
  }}>
      <div className="mb-3">
        <Badge color="green" size="md" icon="flask">
          Early access
        </Badge>
      </div>
      <div className="callout-body text-[15px] leading-relaxed text-gray-700 dark:text-gray-300">
        This functionality is actively evolving.{" "}
        {isBreaking ? "Breaking changes" : "Changes"} may occur as we expand
        capabilities and improve accuracy and reliability. Email{" "}
        <a href="mailto:support@learningcommons.org">
          support@learningcommons.org
        </a>{" "}
        ↗ with your feedback or issues.
      </div>
      <style>{`.callout-body a { text-decoration: underline; text-decoration-color: #178251; }`}</style>
    </div>;
};

<EarlyAccess />

The Knowledge Graph API provides programmatic access to:

* [Academic Standards](/knowledge-graph/graph-reference/academic-standards)
* [Learning Components](/knowledge-graph/graph-reference/learning-components)
* [Learning Progressions](/knowledge-graph/graph-reference/learning-progressions)
* [Standards Crosswalks](/knowledge-graph/graph-reference/standards-crosswalks)
* [Curriculum](/knowledge-graph/graph-reference/curriculum)
* [Learner Variability Navigator](/knowledge-graph/graph-reference/learner-variability-navigator)

See the [API reference](/api-reference/platform-api/overview) to get started.

## Related topics

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/api-reference/platform-api/overview">
    Browse endpoints, parameters, and response schemas for Knowledge Graph.
  </Card>

  <Card title="Tutorials" icon="graduation-cap" href="/knowledge-graph/getting-started/tutorials">
    Follow a step-by-step tutorial to query frameworks and tag content.
  </Card>
</CardGroup>
