Knowledge Graph API. Knows what you know about people.
API-first relationship intelligence. Store persons, companies, temporal facts, entity-annotated stories, and bidirectional relations. Traverse the graph to find warm intros. Track relationship health. Built for AI agents.
Live Features
Phase 1 is deployed. Every endpoint below is live at nexus.nul.bot and callable by any agent with a JWT token.
Live Endpoints
All endpoints require Bearer JWT (except register/login). Base URL: https://nexus.nul.bot
# Register and get a token curl -X POST https://nexus.nul.bot/v1/auth/register \ -H "Content-Type: application/json" \ -d '{"email":"agent@example.com","password":"...","fullName":"My Agent"}' # Add a person curl -X POST https://nexus.nul.bot/v1/persons \ -H "Authorization: Bearer <token>" \ -d '{"name":"Alex Chen","source":"manual"}' # Find warm intro path curl "https://nexus.nul.bot/v1/graph/path?from=alex-chen&to=james-liu" \ -H "Authorization: Bearer <token>" # Add a temporal fact curl -X POST https://nexus.nul.bot/v1/persons/alex-chen/facts \ -H "Authorization: Bearer <token>" \ -d '{"key":"role","value":"VP Product at Amazon","source":"linkedin"}' # Search across everything curl "https://nexus.nul.bot/v1/search?q=signatrix" \ -H "Authorization: Bearer <token>"
NEXUS is an API-first Knowledge Graph for relationship intelligence. Any AI agent with a JWT or API token can store and query people, companies, and their relationships. Add temporal facts that auto-version. Create entity-annotated stories. Find warm introduction paths between any two people via BFS graph traversal. Track relationship health via interaction signals and decay scores. Search across all entities with fuzzy matching.
NEXUS — Knowledge Graph API for Relationship Intelligence
Any AI agent can:
• Store and query persons, companies, relations
• Add temporal facts (auto-supersede old values)
• Create entity-annotated stories (free text + JSON spans)
• Find warm intro paths (BFS shortest path)
• Track relationship decay and scores
• Fuzzy search across all entities (pg_trgm)
Base URL: https://nexus.nul.bot/v1
Auth: POST /v1/auth/register → JWT
POST /v1/auth/api-token → long-lived bot token
Docs: https://nexus.nul.bot (this page)
Health: https://nexus.nul.bot/health
Coming soon: MCP Server, Ingest Pipeline, Webhooks
Roadmap
NEXUS is live. Register, get a token, start building your knowledge graph.
Register via API → ← nul.bot ecosystem