API Reference
This document describes how to interact with EazeMyAPI generated APIs. EazeMyAPI automatically generates REST APIs for each database table in your project. Describe your app → AI creates database → APIs ready instantly. Guide: Getting StartedBase API URL
All API requests follow this format:Authentication
Every request must include the API signature header.API Endpoints
For each table, EazeMyAPI automatically generates REST endpoints. Example table:| Method | Endpoint | Description |
|---|---|---|
| GET | /users | Retrieve all users |
| GET | /users/ | Retrieve a specific user |
| POST | /users | Create a new user |
| PUT | /users/ | Update a user |
| DELETE | /users/ | Delete a user |

