Documentation Index
Fetch the complete documentation index at: https://docs.auvy.ai/llms.txt
Use this file to discover all available pages before exploring further.
API Reference
The AUVY API is a REST API layered on a unified resource spine: materialized heads, versions, content for large bodies, and chunks for lexical and hybrid search./v1/browse, /v1/search, /v1/resources/..., and /v1/assets / /v1/artifacts are the main ways to read and mutate durable workspace data. Neurons, pathways, receptors, and reflexes are the same resources under the hood; many also expose vertical routes (/v1/neurons, /v1/receptors, …) for product-shaped CRUD and invoke.
This reference focuses on endpoints you can drive with an API key or share token. All endpoints return JSON, use standard HTTP methods, and follow consistent patterns for authentication, pagination, and error handling.
For a step-by-step walkthrough, see Integrate the API.
Spine vs vertical routes
| Pattern | Purpose |
|---|---|
| Spine / catalog | Cross-kind browse, symmetric GET /v1/resources/{catalog}/:id, history, soft-delete + restore, vault trees — Resources |
| Document lane | Asset ingest, artifact bodies and patches — Assets and Artifacts |
| Discovery | POST /v1/browse, POST /v1/browse/resource-tree, POST /v1/search — Browse, Search |
| Vertical | Slug neurons, receptor invoke/share, pathway execute, reflex CRUD — kind-specific references below |
Base URL and version
The API base URL is https://api.auvy.ai. The current API version is v1 (all paths are under/v1/). The SDK uses this by default; you can override baseUrl for self-hosted or local dev and optionally set apiVersion if a future version is introduced.
Authentication
This reference primarily uses:| Credential | Header | Use case |
|---|---|---|
| API Key | Authorization: Bearer ak_live_... | Server-to-server, CLI, scripts |
| Share token | ?t=... or body field | Public receptor and trace flows |
JWT-only workspace-management routes are intentionally excluded from this API-key-focused reference set.
- TypeScript SDK
- curl
Request & Response Format
All request bodies and responses use JSON. SetContent-Type: application/json for POST/PATCH/PUT requests.
Success response:
| Code | Status | Meaning |
|---|---|---|
AUTH_REQUIRED | 401 | Missing or invalid credentials |
FORBIDDEN | 403 | Insufficient permissions |
NOT_FOUND | 404 | Resource does not exist |
VALIDATION_ERROR | 400 | Invalid request data |
RATE_LIMIT | 429 | Too many requests (check retryAfter) |
Pagination
List endpoints acceptlimit and offset query parameters:
- TypeScript SDK
- curl
Rate Limiting
Requests are rate-limited per API key or user. Rate limit headers are included in every response:retryAfter seconds. The SDK handles this automatically with configurable retry options.
Streaming
Invoke a receptor withstream: true to receive tokens in real time:
- TypeScript SDK
- curl
OpenAPI Specification
Download OpenAPI Spec
OpenAPI 3.1 specification — import into Postman, Insomnia, or code generators.
Endpoints
Health
Liveness plus optional authenticated workspace and brain context.
Config
Active model metadata, embedding settings, and cost estimates.
Neurons
Agents: model config, prompts, memory, scope, and tool access.
Pathways
Visual workflows connecting neurons and execution steps.
Reflexes
Tool collections from integrations and built-in tools.
Receptors
Gateways: invoke neurons and pathways; list, manage, and share.
Public
Public share endpoints for receptors and traces.
Traces
Execution history and conversation contexts.
Jobs
Job status, results, and streaming.
Resources
Spine hub: browse trees, catalog lists/reads, central patch, resource events.
Assets and Artifacts
Immutable ingested assets and mutable versioned artifacts.
Search
Hybrid keyword + semantic search over spine chunks (
/v1/search).Tools
Native tool metadata and input schemas.
Recollections
Memory scopes attached to traces and neurons.
Meetings
Meeting objects, live transcription, and transcript artifacts.
Stakeholders
Stakeholder map snapshots and briefings.
Usage
Usage statistics and analytics.
Activity
Workspace activity feed.