Base API URL
All API requests follow this format:Authentication
Every request must include the API signature header.API Endpoints
For each table, EazeMyAPI automatically generates REST endpoints. Example table:
Guide:
Generating APIs
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
https://api.eazemyapi.com/{project-name}/{table}/{version}/{action}
https://api.eazemyapi.com/my-project/users/v1/list
X-API-SIGNATURE: <your-secret-key>
Project → Settings → API Signature Key
users
| Method | Endpoint | Description |
|---|---|---|
| GET | /{project-name}/{table}/{version}/list | Retrieve all records |
| GET | /{project-name}/{table}/{version}/show/:id | Retrieve a single record |
| POST | /{project-name}/{table}/{version}/create | Create a new record |
| POST | /{project-name}/{table}/{version}/update/:id | Update a record |
| DELETE | /{project-name}/{table}/{version}/delete/:id | Delete a record |
fetch("https://api.eazemyapi.com/my-project/users/v1/list", {
method: "GET",
headers: {
"X-API-SIGNATURE": "your-secret-key"
}
})
fetch("https://api.eazemyapi.com/my-project/users/v1/show/1", {
method: "GET",
headers: {
"X-API-SIGNATURE": "your-secret-key"
}
})
fetch("https://api.eazemyapi.com/my-project/users/v1/create", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-SIGNATURE": "your-secret-key"
},
body: JSON.stringify({
name: "Dara Singh",
email: "dara@example.com"
})
})
fetch("https://api.eazemyapi.com/my-project/users/v1/update/1", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-SIGNATURE": "your-secret-key"
},
body: JSON.stringify({
name: "Dara Singh Updated"
})
})
fetch("https://api.eazemyapi.com/my-project/users/v1/delete/1", {
method: "DELETE",
headers: {
"X-API-SIGNATURE": "your-secret-key"
}
})
{
"success": true,
"message": "Data found.",
"data": {
"id": 1,
"name": "Dara Singh",
"email": "dara@example.com"
}
}
Was this page helpful?
