API Reference
# 𝚫base Platform API
𝚫base Platform API
Section titled “𝚫base Platform API”𝚫base Platform API
Section titled “𝚫base Platform API”A fully managed, serverless event store that works out of the box.
Authentication
Section titled “Authentication”All API endpoints require authentication via JWT Bearer token:
Authorization: Bearer <your-jwt-token>
The JWT token contains tenant and user information required for authorization.
Version: 1.2.9
Base URL
Section titled “Base URL”https://api.delta-base.com
API Categories
Section titled “API Categories”- Management - 2 endpoints
- Event Store - 2 endpoints
Quick Example
Section titled “Quick Example”# Create an event storecurl -X POST \ https://api.delta-base.com/api/event-stores \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json" \ -d '{"name": "my-app"}'
# Append eventscurl -X POST \ https://api.delta-base.com/api/event-stores/my-app/streams/user-123/events \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "events": [ { "type": "UserRegistered", "data": {"email": "user@example.com", "name": "John Doe"} } ] }'
# Read eventscurl https://api.delta-base.com/api/event-stores/my-app/streams/user-123/events \ -H "Authorization: Bearer YOUR_JWT_TOKEN"
Interactive Documentation
Section titled “Interactive Documentation”For an interactive API explorer, visit the Scalar API Reference.
OpenAPI Specification
Section titled “OpenAPI Specification”The complete OpenAPI 3.0 specification is available at: openapi.json