API URL Structure
All EazeMyAPI endpoints follow this structure:| Parameter | Description |
|---|---|
{project} | Your project identifier |
{table} | Database table name |
{version} | API version |
{action} | Operation (list, create, update, delete) |
How API Generation Works
The API generation process follows these steps:Instant API Example
Here’s what happens in real-time when you create a table:Example Endpoint
Example Response
Example Table
Example users table:| Field | Type |
|---|---|
| id | NUMBER |
| name | TEXT |
| phone | PHONE |
| created_at | DATETIME |
Generated API Endpoints
Typical endpoints generated for a table include:List Records
Create Record
Update Record
Delete Record
Example API Request
Endpoint
Request
Example Response
Automatic CRUD Operations
Each generated API supports standard CRUD operations.| Operation | Description |
|---|---|
| Create | Add new records |
| Read | Retrieve records |
| Update | Modify existing records |
| Delete | Remove records |
Benefits of Automatic API Generation
Using EazeMyAPI to generate APIs provides several advantages:- No backend server setup required
- Faster development
- Standardized API structure
- Secure authentication support
- Easy frontend integration

