﻿> ## 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.

# Overview

> Overview of the Knowledge Graph API, including base URL, authentication, and endpoints for curriculum, standards, and learning components.

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 Learning Commons API provides programmatic access to Knowledge Graph data:

* [Academic Standards](/knowledge-graph/graph-reference/academic-standards) – All 50 U.S. states
* [Learning Components](/knowledge-graph/graph-reference/learning-components) – Mathematics and English Language Arts
* [Standards Crosswalks](/knowledge-graph/graph-reference/standards-crosswalks) – Relationships between state standards and Common Core State Standards (CCSS)
* [Curriculum](/knowledge-graph/graph-reference/curriculum) – Scope and sequence

## How to use the API

|                    |                                                                                                                                                                                                             |
| :----------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Base URL**       | `https://api.learningcommons.org/knowledge-graph/v0`                                                                                                                                                        |
| **Authentication** | Generate an API key in the [Learning Commons Platform](https://platform.learningcommons.org/?utm_source=docs\&utm_medium=api-reference) ↗ and include it in the request header as `x-api-key: YOUR_API_KEY` |

## Related topics

<CardGroup cols={2}>
  <Card title="Academic Standards" icon="certificate" href="/knowledge-graph/graph-reference/academic-standards">
    Explore academic standards from all 50 U.S. states.
  </Card>

  <Card title="Learning Components" icon="puzzle-piece" href="/knowledge-graph/graph-reference/learning-components">
    Explore Learning Components for Mathematics and English Language Arts.
  </Card>

  <Card title="Standards Crosswalks" icon="arrows-left-right" href="/knowledge-graph/graph-reference/standards-crosswalks">
    Map relationships between state standards and Common Core State Standards
    (CCSS).
  </Card>

  <Card title="Curriculum" icon="book-open" href="/knowledge-graph/graph-reference/curriculum">
    Explore curriculum scope and sequence data.
  </Card>
</CardGroup>
