The AI-policy risk dataset,
in your stack.
Query computed IP & privacy risk ratings and verbatim policy citations for 527+ AI platforms over a simple REST API. Built for GRC and security teams wiring vendor diligence into their pipelines, in-house counsel and IP advisors, and creator teams automating tool checks. Every rating is generated automatically and paired with a source citation.
Informational only, not legal advice. Verify findings against the source before acting.
Plans
- ✓All read endpoints: platforms, search
- ✓Current IP & privacy risk rating for every platform
- ✓Per-surface citation counts
- ✓60 requests / minute
- ✓Everything in Starter
- ✓Full verbatim citation payloads (quote + source location)
- ✓/changes endpoint — recent re-reviews
- ✓300 requests / minute
Your API key is emailed automatically the moment your subscription starts, and stops working automatically when it ends. No human issues keys. Need higher limits or an SLA? Talk to us about enterprise.
Authentication
Send your key as a Bearer token (or an x-api-key header). Keys look like apc_live_… and are shown only once, in the email.
curl https://aipolicycompare.com/api/v1/platforms \
-H "Authorization: Bearer apc_live_YOUR_KEY"Endpoints
| METHOD | PATH | TIER | DESCRIPTION |
|---|---|---|---|
| GET | /api/v1/platforms | All | List every tracked platform with its current rating. |
| GET | /api/v1/platforms/{id} | All | One platform: rating, risk reason, surface counts. Pro adds full citations. |
| GET | /api/v1/search?q= | All | Search platforms by name. |
| GET | /api/v1/changes | Pro | Most recent automated re-reviews, newest first. |
Example response
GET /api/v1/platforms?limit=1
{
"object": "list",
"total": 527,
"limit": 1,
"offset": 0,
"disclaimer": "Informational only, not legal advice...",
"data": [
{
"id": "anthropic-claude",
"name": "Anthropic Claude",
"website": "https://www.anthropic.com",
"rating": "MED",
"risk_reason": "Rated MED risk. 12 citations extracted...",
"last_reviewed": "2026-05-31",
"url": "https://aipolicycompare.com/platform/anthropic-claude"
}
]
}The API exposes the same data rendered on the site — nothing more. All findings are extracted automatically from publicly available policy documents and are informational only, not legal advice.