Skip to main content
EazeMyAPI automatically generates REST API endpoints for every table created in your project. These endpoints allow your applications to perform standard CRUD operations:
  • Create data
  • Read data
  • Update data
  • Delete data
No backend server code is required.

Endpoint Structure

All EazeMyAPI endpoints follow a consistent structure.
Example:
Components:

Common Endpoint Types

When you create a table, EazeMyAPI automatically generates endpoints for common operations.

List

Retrieve all records from a table.
Example request:
Example response:

Show

Retrieve a single record by ID.
Example request:
Example response:

Create

Create a new record in a table.
Example request:
Example response:

Update

Update an existing record by ID.
Example request:
Example response:

Delete

Delete a record by ID.
Example request:
Example response:

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.
Example request:
Example response:

Best Practices

When using EazeMyAPI endpoints:
  • Always include the X-API-SIGNATURE header
  • Validate request parameters before sending
  • Handle error responses properly
  • Use HTTPS for all API requests

Related Documentation

Learn how authentication works: Authentication Understand response structure: API Response Format