Skip to main content
All API requests to EazeMyAPI must include an authentication header. This ensures that only authorized applications can access your project APIs. EazeMyAPI uses a project-level API signature key to verify requests.

API Signature Header

Every API request must include the following header:
This key identifies your project and authorizes the request.

Where to Find Your API Key

You can find your API signature key inside your project settings.

Steps

  1. Open your Project
  2. Go to Settings
  3. Copy the API Signature Key

Location in Dashboard

Keep this key secure. Do not expose it publicly.

Example API Request

JavaScript Example


Example Using cURL


Example Using Postman

When testing APIs in Postman:
  1. Open Postman
  2. Create a new request
  3. Go to the Headers tab
  4. Add the following header
Then send the request.

Security Best Practices

Follow these guidelines to protect your API key:
  • Never expose your secret key in public repositories
  • Avoid placing secret keys directly inside frontend code
  • Store API keys in environment variables
  • Rotate keys if you suspect unauthorized access

Important Note

The API signature key gives access to your project APIs. Anyone who has this key can send requests to your backend. Always handle it securely and avoid sharing it publicly.

Next Step

Once authentication is configured, you can start executing advanced database operations. Continue to: Writing Custom Queries