- Create data
- Read data
- Update data
- Delete data
Endpoint Structure
All EazeMyAPI endpoints follow a consistent structure.| Part | Description |
|---|---|
api.eazemyapi.com | API server |
{project-name} | Your project identifier |
{table} | The table name |
{version} | API version (e.g. v1, v2) |
{action} | API action (e.g. list, create, delete) |
Common Endpoint Types
When you create a table, EazeMyAPI automatically generates endpoints for common operations.List
Retrieve all records from a table.Show
Retrieve a single record by ID.Create
Create a new record in a table.Update
Update an existing record by ID.Delete
Delete a record by ID.Custom Endpoints
EazeMyAPI also supports raw custom query endpoints for more advanced use cases. Unlike CRUD endpoints, custom queries are not tied to a specific table — so there is no{table} segment in the URL.
Best Practices
When using EazeMyAPI endpoints:- Always include the
X-API-SIGNATUREheader - Validate request parameters before sending
- Handle error responses properly
- Use HTTPS for all API requests

