Skip to main content

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).

Get Started

Create your first knowledge graph in minutes.

Core Concepts

Key Features

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:
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:
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
  }'

Explore the API

View the complete API reference with interactive examples.