Project: My E-Commerce App
Documentation

Data Studio

Visually create tables and API endpoints without writing SQL.

Table: shopping_cart
Column Name
Data Type
Rules
Actions
id
UUID
Primary Key, Auto-generated
🔒
user_id
Relation
Foreign Key -> users.id
🔒
product_name
Text
Required
price
Integer
Required, > 0
✨ Auto-Generated REST API Online
POST https://api.blackbox.io/api/data/shopping_cart

// Frontend developers can now send this JSON:
{
  "product_name": "Nike Air Max",
  "price": 120
}