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

# Introduction

> AI-powered knowledge graphs for storing, querying, and generating structured knowledge

## What is Neode?

Neode is a knowledge graph platform that helps you store, organize, and generate structured knowledge using AI. Transform unstructured information into queryable facts represented as **triples** (subject-predicate-object).

<Card title="Get Started" icon="rocket" href="/quickstart" horizontal>
  Create your first knowledge graph in minutes.
</Card>

## Core Concepts

<Columns cols={2}>
  <Card title="Triples" icon="share-nodes" href="/concepts#triples">
    Facts stored as subject-predicate-object. For example: "Tesla" → "founded\_by" → "Elon Musk"
  </Card>

  <Card title="Entities" icon="cube" href="/concepts#entities">
    Subjects and objects in your knowledge graph, automatically disambiguated.
  </Card>

  <Card title="Indexes" icon="folder-tree" href="/concepts#indexes">
    Organize your entities into separate namespaces for different projects.
  </Card>

  <Card title="Graphs" icon="diagram-project" href="/concepts#graphs">
    Group related triples together for context and organization.
  </Card>
</Columns>

## Key Features

<CardGroup cols={2}>
  <Card title="AI Generation" icon="sparkles" href="/guides/ai-generation">
    Generate triples from natural language using AI. Supports web search for real-time information.
  </Card>

  <Card title="Semantic Search" icon="magnifying-glass" href="/guides/semantic-search">
    Search your knowledge graph using vector embeddings for meaning-based queries.
  </Card>

  <Card title="REST API" icon="code" href="/api-reference/introduction">
    Full REST API for programmatic access. Store triples, query entities, and generate knowledge.
  </Card>

  <Card title="Public Indexes" icon="globe" href="https://neode.ai/explore">
    Share your knowledge indexes publicly and explore community-shared knowledge graphs.
  </Card>
</CardGroup>

## Use Cases

* **LLM Memory**: Store and retrieve facts for AI assistants and agents
* **Research**: Organize research findings and discover connections
* **Data Integration**: Unify knowledge from multiple sources
* **Knowledge Management**: Build structured knowledge bases from documents

## Quick Example

Store a fact about Tesla:

```bash theme={null}
curl -X POST https://neode.ai/api/triples \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "subject": "Tesla",
    "predicate": "headquarters_in",
    "object": "Austin, Texas",
    "object_type": "entity",
    "confidence": 0.95,
    "index_id": "YOUR_INDEX_ID"
  }'
```

Or generate triples with AI:

```bash theme={null}
curl -X POST "https://neode.ai/api/triples/generate?format=json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "query": "Extract key facts about SpaceX Starship",
    "index_id": "YOUR_INDEX_ID",
    "web_search": true,
    "triple_count": 10
  }'
```

<Card title="Explore the API" icon="terminal" href="/api-reference/introduction">
  View the complete API reference with interactive examples.
</Card>
