The AI-policy risk dataset,
in your stack.
Query computed IP & privacy risk ratings and verbatim policy citations for 402+ 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 airin_… for self-serve access or apc_live_… for paid subscription keys. Use the exact key shown to you; AIRIN accepts both prefixes for backward compatibility.
curl https://airinetwork.com/api/v1/platforms \
-H "Authorization: Bearer airin_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. |
GRC and security examples
These are implementation patterns, not extra claims. They use the same cited records rendered on AIRIN's public platform pages and reports.
Vendor-risk register sync
Pull platform ratings nightly and write AIRIN's rating, verification tier, and source URL into a vendor-risk register, spreadsheet, or GRC tool.
curl "https://airinetwork.com/api/v1/platforms?limit=500" \
-H "Authorization: Bearer airin_YOUR_KEY"Policy-change watch
On Pro, poll recent re-reviews and open a review task only when a watched vendor changed. Use the platform URL as the human review anchor.
curl "https://airinetwork.com/api/v1/changes?limit=25" \
-H "Authorization: Bearer airin_YOUR_KEY"Agent clause retrieval
Let an internal assistant retrieve exact clauses, but keep facts grounded in AIRIN's quoted policy text and provenance. Embeddings retrieve candidates only.
curl "https://airinetwork.com/api/machine/search?q=training%20uploads&surface=training_use"Procurement report handoff
Attach AIRIN's PDF report to a vendor review ticket, then cite the machine endpoint in the ticket so a reviewer can re-check snapshot hashes and source links.
curl -L "https://airinetwork.com/api/verified/export/openai-chatgpt" \
-o openai-chatgpt-grc-assessment.pdfMinimal JavaScript client
Use this shape in a scheduled job, worker, or internal procurement tool. Store the key in your secrets manager; do not ship it to browsers.
async function airin(path) {
const res = await fetch("https://airinetwork.com" + path, {
headers: { authorization: "Bearer " + process.env.AIRIN_API_KEY }
});
if (!res.ok) throw new Error(`AIRIN ${res.status}: ${await res.text()}`);
return res.json();
}
const platforms = await airin("/api/v1/platforms?limit=500");
const highRisk = platforms.data.filter((p) => p.rating === "HIGH");
console.log(highRisk.map((p) => [p.name, p.verification, p.url]));Example response
GET /api/v1/platforms?limit=1
{
"object": "list",
"total": 402,
"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://airinetwork.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.
AIRIN Brief
Built for compliance officers, legal counsel, and SaaS founders. Subscribe to the email digest — one short brief when a tracked vendor materially changes its terms, training policy, or risk rating. Prefer in-app? Watch platforms in your alerts inbox instead.
