B2H BaaS

REST API Overview

Direct HTTP access to your B2H BaaS backend.

Base URL

https://api.novabaas.com/api/v1/projects/{projectId}

Authentication

Include your API key in the header:

Authorization: Bearer {your-api-key}

Endpoints

MethodEndpointDescription
GET/data/{collection}List documents
GET/data/{collection}/{id}Get document
POST/data/{collection}Create document
PUT/data/{collection}/{id}Update document
DELETE/data/{collection}/{id}Delete document

Response Format

{
  "success": true,
  "data": { ... }
}