- Create data
- Read data
- Update data
- Delete data
Endpoint Structure
All EazeMyAPI endpoints follow a consistent structure.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

