Skip to main content

Zenewo API Documentation

Welcome to the Zenewo API reference. This documentation is designed to help you integrate with the Zenewo workspace cloud, manage tenants, and handle cloud storage foundations.

Core Concepts

Zenewo is built on a Tenant-First architecture. Every request to our API must be scoped to a specific tenant boundary to ensure data isolation and security.

Base URLs

EnvironmentBase URL
Productionhttps://zenewo-gateway.lama-4db.workers.dev/api
Localhttp://localhost:8787/api

Authentication

We use Session-based authentication via Better Auth. Clients must include the session cookie in all requests. For cross-service communication, we support API Keys. Learn more about Authentication

Rate Limiting

The API is rate-limited to 1,000 requests per minute per tenant on standard plans. Enterprise plans can request higher limits.

Response Format

All responses are returned in JSON format.
{
  "success": true,
  "data": { ... },
  "message": "Operation successful"
}