- 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 |
| version | API version |
| endpoint | API action |
Common Endpoint Types
When you create a table, EazeMyAPI automatically generates endpoints for common operations.Get All Records
Retrieve all records from a table. Example endpoint:Get Single Record
Retrieve one record using an identifier. Example endpoint:Create Record
Create a new record in a table. Example endpoint:Update Record
Update an existing record. Example endpoint:Delete Record
Delete a record from a table. Example endpoint:Custom Endpoints
EazeMyAPI also supports custom query endpoints. Example:Best Practices
When using EazeMyAPI endpoints:- Always include the X-API-SIGNATURE header
- Validate request parameters
- Handle error responses properly
- Use HTTPS for all API requests

