9 Entity Types
Issues, Decisions, Work Logs, Architecture, Best Practices, Patterns, Tags, Relationships, and Generic Memories
AI Builder
Bulk import API powered by OpenAI, Claude, or Gemini for atomic plan creation
Secure Authentication
JWT tokens and API keys for secure access. PostgreSQL-only architecture for all tiers.
Knowledge Graph
Create relationships between entities with 10 relationship types and traverse the graph with BFS algorithm
Quick Start
Get started with the ACE API in 3 steps
1. Install ACE (requires Node.js 18+)
npm install -g @ace3-memory/ace
2. Login and initialize
ace login ace init ace start
3. Create your first issue
curl -X POST http://localhost:7777/api/v1/my-namespace/issues \
-H "Content-Type: application/json" \
-d '{
"title": "Test issue",
"description": "My first ACE issue",
"priority": "P2"
}'API Details
Base URL (Local)
http://localhost:7777/api/v1Authentication
Bearer YOUR_JWT_TOKENContent Type
application/jsonVersion
v1 (current)Core Endpoints
Universal CRUD pattern for all entity types
POST /api/v1/{namespace}/issuesCreate issueGET /api/v1/{namespace}/issuesList issuesPOST /api/v1/{namespace}/decisionsCreate decisionPOST /api/v1/{namespace}/work-logsLog workPOST /api/v1/{namespace}/relationshipsCreate relationshipGET /api/v1/{namespace}/relationships/traverseTraverse graphPOST /api/v1/{namespace}/plans/bulkAI BuilderFull API Reference
Explore complete documentation with interactive testing