API Overview
The CubeStack API is a RESTful API that provides full access to your data. Every cube automatically gets API endpoints for CRUD operations.Base URL
Request Format
All requests use standard HTTP methods:| Method | Description |
|---|---|
GET | Retrieve records |
POST | Create a new record |
PUT | Update an existing record |
DELETE | Delete a record |
Response Format
All responses return JSON with the following structure:List Response
Single Record Response
Content Type
All request bodies must be sent asapplication/json:
Versioning
The API is versioned via the URL path (/api/v1). Breaking changes will be introduced in new versions.