GRID API Documentation

Geometric Resonance Intelligence Driver - Enterprise AI Framework

Available APIs

Mothership API v2.2.0

Main GRID application with authentication, billing, RAG queries, skills execution, and agentic system management.

Canvas API v2.2.0

Visual pattern exploration and canvas operations for geometric resonance visualization.

Resonance API v2.2.0

Pattern matching and resonance detection across complex systems.

Quick Start

Authentication

# Get access token
curl -X POST http://localhost:8080/api/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "password": "password"}'

# Use token in requests
curl -H "Authorization: Bearer YOUR_TOKEN" \
  http://localhost:8080/api/v1/users/me
                

RAG Query Example

# Query knowledge base
curl -X POST http://localhost:8080/api/v1/rag/query \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"query": "How does pattern recognition work?", "top_k": 5}'