URL Components
| Component | Description |
|---|---|
api.eazemyapi.com | Base API server |
{project} | Your project identifier |
{version} | API version |
{endpoint} | API endpoint name |
Example API URL
Example endpoint:| Part | Value |
|---|---|
| project | demo-project |
| version | v2 |
| endpoint | get-single-user |
API Request Example
Example request using cURL.API Versioning
EazeMyAPI uses versioned APIs to ensure backward compatibility. Example versions:Endpoint Naming Convention
Endpoints in EazeMyAPI typically follow clear naming patterns. Examples:| Endpoint | Description |
|---|---|
get-users | Fetch all users |
get-single-user | Fetch one user |
create-user | Create new user |
update-user | Update user |
delete-user | Delete user |
Authentication Header
Every request must include the API signature header.Best Practices
When building API requests: • Always include the API signature header• Use the correct API version
• Validate request parameters
• Use HTTPS for secure communication

