Skip to main content

eazemyapi

Provides expert guidance on using EazeMyAPI to build no-code backends and auto-generate REST APIs from database tables.

Install this skill

or
41/100

Security score

The eazemyapi skill was audited on Mar 29, 2026 and we found 39 security issues across 4 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 150

Template literal with variable interpolation in command context

SourceSKILL.md
150const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/show/${id}`, {
medium line 172

Template literal with variable interpolation in command context

SourceSKILL.md
172const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/update/${id}`, {
medium line 185

Template literal with variable interpolation in command context

SourceSKILL.md
185const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/delete/${id}`, {
medium line 205

Template literal with variable interpolation in command context

SourceSKILL.md
205const url = `https://api.eazemyapi.com/my-project/${path}${qs ? "?" + qs : ""}`;
low line 137

Fetch to external URL

SourceSKILL.md
137const res = await fetch("https://api.eazemyapi.com/my-project/posts/v2/list", {
low line 158

Fetch to external URL

SourceSKILL.md
158const res = await fetch("https://api.eazemyapi.com/my-project/posts/v2/create", {
low line 193

Fetch to external URL

SourceSKILL.md
193const res = await fetch("https://api.eazemyapi.com/my-project/v2/posts-by-category?category_id=abc", {
medium line 80

Access to .env file

SourceSKILL.md
80- Store in environment variables (`.env`, Vercel env vars, etc.)
low line 140

Access to .env file

SourceSKILL.md
140"X-API-SIGNATURE": process.env.API_KEY
low line 151

Access to .env file

SourceSKILL.md
151headers: { "X-API-SIGNATURE": process.env.API_KEY }
low line 162

Access to .env file

SourceSKILL.md
162"X-API-SIGNATURE": process.env.API_KEY
low line 176

Access to .env file

SourceSKILL.md
176"X-API-SIGNATURE": process.env.API_KEY
low line 187

Access to .env file

SourceSKILL.md
187headers: { "X-API-SIGNATURE": process.env.API_KEY }
low line 194

Access to .env file

SourceSKILL.md
194headers: { "X-API-SIGNATURE": process.env.API_KEY }
low line 211

Access to .env file

SourceSKILL.md
211"X-API-SIGNATURE": process.env.EAZE_API_KEY
low line 15

External URL reference

SourceSKILL.md
15**Base API URL:** `https://api.eazemyapi.com`
low line 16

External URL reference

SourceSKILL.md
16**Docs:** `https://doc.eazemyapi.com`
low line 17

External URL reference

SourceSKILL.md
17**Dashboard:** `https://app.eazemyapi.com`
low line 28

External URL reference

SourceSKILL.md
28https://api.eazemyapi.com/{project-name}/{table}/{version}/{action}
low line 40

External URL reference

SourceSKILL.md
40https://api.eazemyapi.com/soche-india/posts/v2/list
low line 41

External URL reference

SourceSKILL.md
41https://api.eazemyapi.com/soche-india/posts/v2/show/:id
low line 42

External URL reference

SourceSKILL.md
42https://api.eazemyapi.com/soche-india/posts/v2/create
low line 43

External URL reference

SourceSKILL.md
43https://api.eazemyapi.com/soche-india/posts/v2/update/:id
low line 44

External URL reference

SourceSKILL.md
44https://api.eazemyapi.com/soche-india/posts/v2/delete/:id
low line 50

External URL reference

SourceSKILL.md
50https://api.eazemyapi.com/{project-name}/{version}/{custom-endpoint}
low line 61

External URL reference

SourceSKILL.md
61https://api.eazemyapi.com/soche-india/v2/posts-by-category
low line 137

External URL reference

SourceSKILL.md
137const res = await fetch("https://api.eazemyapi.com/my-project/posts/v2/list", {
low line 150

External URL reference

SourceSKILL.md
150const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/show/${id}`, {
low line 158

External URL reference

SourceSKILL.md
158const res = await fetch("https://api.eazemyapi.com/my-project/posts/v2/create", {
low line 172

External URL reference

SourceSKILL.md
172const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/update/${id}`, {
low line 185

External URL reference

SourceSKILL.md
185const res = await fetch(`https://api.eazemyapi.com/my-project/posts/v2/delete/${id}`, {
low line 193

External URL reference

SourceSKILL.md
193const res = await fetch("https://api.eazemyapi.com/my-project/v2/posts-by-category?category_id=abc", {
low line 205

External URL reference

SourceSKILL.md
205const url = `https://api.eazemyapi.com/my-project/${path}${qs ? "?" + qs : ""}`;
low line 260

External URL reference

SourceSKILL.md
260https://api.eazemyapi.com/my-project/v2/posts-by-category
low line 327

External URL reference

SourceSKILL.md
327- Full docs: https://doc.eazemyapi.com
low line 328

External URL reference

SourceSKILL.md
328- API endpoints reference: https://doc.eazemyapi.com/docs/api-endpoints
low line 329

External URL reference

SourceSKILL.md
329- Field types: https://doc.eazemyapi.com/docs/field-types
low line 330

External URL reference

SourceSKILL.md
330- Custom queries: https://doc.eazemyapi.com/docs/custom-queries
low line 331

External URL reference

SourceSKILL.md
331- Authentication: https://doc.eazemyapi.com/docs/authentication
Scanned on Mar 29, 2026
View Security Dashboard