/api/v1/privacy/vendorsList third-party vendor risk records
Returns the org's third-party vendor inventory from `vendor_risk_register`, newest-updated first, capped at 500 rows. Requires an orgId from `?orgId` or the API key's own org binding — a GET body is never parsed (400 MISSING_ORG_ID). Required for SOC 2 + ISO 27001 vendor management. Each record carries trust artifacts (has_dpa + dpa_url, has_soc2 + soc2_expires_at, has_iso27001, has_hipaa_baa, has_gdpr_sccs), data-exposure fields (data_types, pii_processed, cross_border, storage_regions), and the computed `inherent_risk` / `residual_risk` ratings. There is no encryption-at-rest field and no CVE count — CVEs are fetched per vendor from GET /api/v1/privacy/vendors/{id}/cve.
Authentication
Send Authorization: Bearer YOUR_API_KEY on every request. Generate API keys at /dashboard/settings/api-keys.
Response
200 example
{
"success": true
}All status codes
Code samples
cURL
curl -X GET \ https://evalguard.ai/api/v1/privacy/vendors \ -H "Authorization: Bearer $EVALGUARD_API_KEY"
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/privacy/vendors", {
method: "GET",
headers: { Authorization: `Bearer ${process.env.EVALGUARD_API_KEY}` },
});
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']}"}
response = requests.request("GET", "https://evalguard.ai/api/v1/privacy/vendors", headers=headers)
print(response.status_code, response.json())Go
package main
import (
"context"
"fmt"
"net/http"
"os"
)
func main() {
req, _ := http.NewRequestWithContext(context.Background(), "GET", "https://evalguard.ai/api/v1/privacy/vendors", nil)
req.Header.Set("Authorization", "Bearer "+os.Getenv("EVALGUARD_API_KEY"))
resp, err := http.DefaultClient.Do(req)
if err != nil { panic(err) }
defer resp.Body.Close()
fmt.Println(resp.Status)
}