/api/v1/compliance/gapsRun gap analysis against scan results
Runs gap analysis for a framework over caller-supplied scan results and returns { report, remediationPlan }. Body: framework (1-120 chars, required — one of eu-ai-act | iso-42001 | nist-rmf | india-dpdp-act | hipaa | fedramp | pci-dss; anything else is 400 listing the accepted ids) and scanResults (object, required) is passed to GapAnalysis UNVALIDATED — it must already carry a SecurityScanResult shape (`findings[]` plus counts); a body without `findings` throws inside the analyzer and answers 500, not a validation 400. Pure function over the body plus the compiled framework definitions — nothing is read from or written to a tenant table.
Authentication
Send Authorization: Bearer YOUR_API_KEY on every request. Generate API keys at /dashboard/settings/api-keys.
Request body required
Example
{
"framework": "<india-dpdp-act | hipaa | fedramp | pci-d>",
"scanResults": {}
}Schema
{
"application/json": {
"schema": {
"type": "object",
"properties": {
"framework": {
"type": "string",
"minLength": 1,
"maxLength": 120,
"description": "india-dpdp-act | hipaa | fedramp | pci-dss."
},
"scanResults": {
"type": "object",
"additionalProperties": {},
"description": "SecurityScanResult shape (owned by @evalguard/core)."
}
},
"required": [
"framework",
"scanResults"
],
"additionalProperties": false
}
}
}Response
200 example
{
"success": true
}All status codes
Code samples
cURL
curl -X POST \
https://evalguard.ai/api/v1/compliance/gaps \
-H "Authorization: Bearer $EVALGUARD_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "framework": "<india-dpdp-act | hipaa | fedramp | pci-d>", "scanResults": {} }'TypeScript
// The TypeScript SDK (@evalguard/sdk) exposes TYPED methods — runEval,
// getEval, runSecurityScan, checkFirewall, … — not a generic request().
// For an arbitrary endpoint, call it directly:
const res = await fetch("https://evalguard.ai/api/v1/compliance/gaps", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.EVALGUARD_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"framework": "<india-dpdp-act | hipaa | fedramp | pci-d>",
"scanResults": {}
}),
});
console.log(res.status, await res.json());Python
# The Python SDK (pip install evalguardai) exposes TYPED methods on
# EvalGuardClient — run_eval, get_eval, … — not a generic request().
# For an arbitrary endpoint, call it directly:
import os
import requests
headers = {"Authorization": f"Bearer {os.environ['EVALGUARD_API_KEY']}"}
headers["Content-Type"] = "application/json"
response = requests.request(
"POST",
"https://evalguard.ai/api/v1/compliance/gaps",
headers=headers,
json={
"framework": "<india-dpdp-act | hipaa | fedramp | pci-d>",
"scanResults": {}
},
)
print(response.status_code, response.json())Go
package main
import (
"context"
"fmt"
"net/http"
"os"
"strings"
)
func main() {
body := strings.NewReader(`{"framework":"<india-dpdp-act | hipaa | fedramp | pci-d>","scanResults":{}}`)
req, _ := http.NewRequestWithContext(context.Background(), "POST", "https://evalguard.ai/api/v1/compliance/gaps", body)
req.Header.Set("Authorization", "Bearer "+os.Getenv("EVALGUARD_API_KEY"))
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil { panic(err) }
defer resp.Body.Close()
fmt.Println(resp.Status)
}