API Endpoints#
Complete reference for all embapi API endpoints.
Endpoint Categories#
- Users - User management
- Projects - Project operations
- LLM Services - LLM service instances
- API Standards - API standard definitions
- Embeddings - Embedding storage and retrieval
- Similars - Similarity search
Endpoint Format#
All endpoints follow the pattern:
{METHOD} /v1/{resource}/{user}/{identifier}Where:
METHOD: HTTP method (GET, POST, PUT, DELETE, PATCH)resource: Resource type (users, projects, embeddings, etc.)user: User handle (owner of the resource)identifier: Specific resource identifier
Authentication#
Most endpoints require authentication via the Authorization header:
Authorization: Bearer your_api_key_herePublic projects allow unauthenticated access to read operations.