Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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
/{project-name}/{table}/{version}/list
/{project-name}/{table}/{version}/show/:id
/{project-name}/{table}/{version}/create
/{project-name}/{table}/{version}/update/:id
/{project-name}/{table}/{version}/delete/:id
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?