OpenRouter Compliance Review
Overview
OpenRouter is a proxy that routes requests to upstream providers (OpenAI, Anthropic, Google, etc.). Compliance depends on both OpenRouter's data handling and the selected provider's policies. Key considerations: data transit through OpenRouter infrastructure, provider-specific data retention, model selection for regulated data, and audit trail requirements.
Prerequisites
- An OpenRouter API key (
sk-or-v1-...) exported as OPENROUTER_API_KEY — see the openrouter-install-auth skill for setup
- Python 3.8+ with the OpenAI SDK for provider-pinned requests and the automated checker in the references
curl and jq to run the Compliance Audit Script
- An existing OpenRouter integration to review — the audit script scans its source tree for hardcoded
sk-or-v1- keys
- Knowledge of which regimes apply (SOC2, GDPR, HIPAA) and how your data is classified
Instructions
- Work through the four areas of the Compliance Checklist —
data_handling, access_control, audit_trail, and provider_selection — recording pass/fail per item.
- Classify each workload with the Data Classification Matrix (Public → Internal → Confidential → Restricted/PHI) to determine allowed providers and required controls.
- Pin regulated traffic per Provider Routing for Compliance: set
provider.order plus allow_fallbacks: False, then verify response.model confirms the approved provider actually served the request.
- For data-sovereignty requirements, configure BYOK per BYOK for Data Sovereignty so inference runs on your own provider account and OpenRouter only routes.
- Run the Compliance Audit Script: key label/limit check via
GET /api/v1/auth/key, a free-tier warning (free tier is unsuitable for regulated data), and the hardcoded-key scan.
- Document the data flow for auditors — client → OpenRouter (routing) → provider (inference) — per Enterprise Considerations.
Compliance Checklist
COMPLIANCE_CHECKLIST = {
"data_handling": [
"Verify OpenRouter does NOT train on your data (confirmed in their privacy policy)",
"Confirm provider-level data policies (OpenAI, Anthropic, Google each differ)",
"Document data flow: your app -> OpenRouter -> provider -> OpenRouter -> your app",
"Identify if prompts contain PII, PHI, or regulated data",
"Implement PII redaction before sending to API",
],
"access_control": [
"Use per-service API keys (not shared keys)",
"Set credit limits per key to isolate blast radius",
"Rotate keys on a 90-day schedule",
"Store keys in secrets manager (not .env files in repos)",
"Enable management keys for programmatic key provisioning",
],
"audit_trail": [
"Log every API call with generation_id, model, user_id, cost",
"Hash prompts (SHA-256) instead of logging raw content",
"Retain audit logs per regulation (90d operational, 7yr financial)",
"Ship logs to append-only storage (S3, immutable DB)",
],
"provider_selection": [
"Route regulated data only to compliant providers",
"Use provider routing to exclude non-compliant providers",
"Document which models are approved for which data classifications",
"Test that fallback routing doesn't route to unapproved providers",
],
}
Provider Routing for Compliance
import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["OPENROUTER_API_KEY"],
default_headers={"HTTP-Referer": "https://my-app.com", "X-Title": "my-app"},
)
# Route ONLY to specific providers (e.g., Anthropic for SOC2)
response = client.chat.completions.create(
model="anthropic/claude-3.5-sonnet",
messages=[{"role": "user", "content": "Analyze this contract..."}],
max_tokens=2048,
extra_body={
"provider": {
"order": ["Anthropic"], # Only Anthropic's infrastructure
"allow_fallbacks": False, # Do NOT fall back to other providers
},
},
)
# Verify which provider actually served the request
print(f"Served by: {response.model}") # Should match anthropic/claude-3.5-sonnet
Data Classification Matrix
| Classification |
Allowed Providers |
Controls |
| Public |
Any (including :free) |
Standard logging |
| Internal |
Tier 1 (OpenAI, Anthropic, Google) |
Audit logging, key limits |
| Confidential |
Anthropic, OpenAI (API-only) |
PII redaction, no free models |
| Restricted/PHI |
BYOK only or self-hosted |
Full audit, encryption at rest |
BYOK for Data Sovereignty
# Bring Your Own Key -- requests go directly to provider
# OpenRouter acts as router only; data doesn't persist on OpenRouter
response = client.chat.completions.create(
model="openai/gpt-4o",
messages=[{"role": "user", "content": "Process this..."}],
max_tokens=1024,
extra_body={
"provider": {
"order": ["OpenAI"],
"allow_fallbacks": False,
},
},
# With BYOK, configure your provider key in OpenRouter dashboard
# Data flows: your app -> OpenRouter (routing only) -> OpenAI (your account)
)
Compliance Audit Script
#!/bin/bash
echo "=== OpenRouter Compliance Audit ==="
# 1. Verify API key has credit limit set
echo "1. Key configuration:"
curl -s https://openrouter.ai/api/v1/auth/key \
-H "Authorization: Bearer $OPENROUTER_API_KEY" | \
jq '{label: .data.label, limit: .data.limit, is_free_tier: .data.is_free_tier}'
# 2. Check if using free tier (not suitable for regulated data)
IS_FREE=$(curl -s https://openrouter.ai/api/v1/auth/key \
-H "Authorization: Bearer $OPENROUTER_API_KEY" | jq -r '.data.is_free_tier')
[ "$IS_FREE" = "true" ] && echo "WARNING: Free tier. Not suitable for regulated data."
# 3. Scan for hardcoded keys in source
FOUND=$(grep -r "sk-or-v1-" --include="*.py" --include="*.ts" --include="*.js" . 2>/dev/null | grep -v node_modules | wc -l)
echo "Hardcoded keys found: $FOUND"
Output
- A pass/fail/warn compliance report from the automated checker in the references, one line per control (API key storage, HTTPS enforcement, max_tokens, error handling, audit logging)
- Key-configuration JSON (
label, limit, is_free_tier) plus a free-tier warning and a count of hardcoded keys found in source, from the Compliance Audit Script
- A provider-pinned client configuration (
provider.order + allow_fallbacks: False) that cannot route regulated data to unapproved providers
- A filled-in markdown compliance checklist (template in the references) covering security, data privacy, reliability, observability, and cost controls
Examples
Running run_compliance_review() from the references against a healthy integration:
Compliance: 5/5 passed, 0 failed, 0 warnings
[OK] api_key_storage: Key loaded from environment variable
[OK] https_enforcement: HTTPS enforced
[OK] max_tokens: max_tokens set to 500
[OK] error_handling: Error handling present
[OK] audit_logging: Audit logging configured
Any [FAIL] line maps to a checklist item above — fix it and re-run until clean. More worked examples: references/examples.md.
Error Handling
| Error |
Cause |
Fix |
| Request routed to unapproved provider |
allow_fallbacks: true (default) |
Set allow_fallbacks: false with explicit order |
| Key exposed in logs |
Raw API key logged |
Add PII redaction for sk-or-v1-* pattern |
| No audit trail for request |
Logging middleware bypassed |
Make audit logging a required wrapper |
| Free model used for regulated data |
No model allowlist |
Implement model allowlist in client wrapper |
Enterprise Considerations
- OpenRouter does not train on API data, but upstream providers may have different terms for API vs consumer use
- Use
provider.order + allow_fallbacks: false to guarantee data only flows to approved providers
- BYOK eliminates OpenRouter as a data processor for inference (routing metadata still transits)
- Document the data flow diagram for auditors: client -> OpenRouter (routing) -> provider (inference)
- Implement client-side PII redaction as defense-in-depth
- Consider self-hosted or VPC deployments for restricted/PHI data
References
1---2name: openrouter-compliance-review3description: Review OpenRouter integration for regulatory compliance (SOC2, GDPR, HIPAA). Use when preparing for audits, evaluating data handling, or documenting compliance posture. Triggers: 'openrouter compliance', 'openrouter gdpr', 'openrouter soc2', 'openrouter data residency'.4license: MIT5---6# OpenRouter Compliance Review
7
8## Overview
9
10OpenRouter is a proxy that routes requests to upstream providers (OpenAI, Anthropic, Google, etc.). Compliance depends on both OpenRouter's data handling and the selected provider's policies. Key considerations: data transit through OpenRouter infrastructure, provider-specific data retention, model selection for regulated data, and audit trail requirements.
11
12## Prerequisites
13
14- An OpenRouter API key (`sk-or-v1-...`) exported as `OPENROUTER_API_KEY` — see the `openrouter-install-auth` skill for setup
15- Python 3.8+ with the OpenAI SDK for provider-pinned requests and the automated checker in the references
16- `curl` and `jq` to run the Compliance Audit Script
17- An existing OpenRouter integration to review — the audit script scans its source tree for hardcoded `sk-or-v1-` keys
18- Knowledge of which regimes apply (SOC2, GDPR, HIPAA) and how your data is classified
19
20## Instructions
21
221. Work through the four areas of the Compliance Checklist — `data_handling`, `access_control`, `audit_trail`, and `provider_selection` — recording pass/fail per item.
232. Classify each workload with the Data Classification Matrix (Public → Internal → Confidential → Restricted/PHI) to determine allowed providers and required controls.
243. Pin regulated traffic per Provider Routing for Compliance: set `provider.order` plus `allow_fallbacks: False`, then verify `response.model` confirms the approved provider actually served the request.
254. For data-sovereignty requirements, configure BYOK per BYOK for Data Sovereignty so inference runs on your own provider account and OpenRouter only routes.
265. Run the Compliance Audit Script: key label/limit check via `GET /api/v1/auth/key`, a free-tier warning (free tier is unsuitable for regulated data), and the hardcoded-key scan.
276. Document the data flow for auditors — client → OpenRouter (routing) → provider (inference) — per Enterprise Considerations.
28
29## Compliance Checklist
30
31```python
32COMPLIANCE_CHECKLIST = {
33 "data_handling": [
34 "Verify OpenRouter does NOT train on your data (confirmed in their privacy policy)",
35 "Confirm provider-level data policies (OpenAI, Anthropic, Google each differ)",
36 "Document data flow: your app -> OpenRouter -> provider -> OpenRouter -> your app",
37 "Identify if prompts contain PII, PHI, or regulated data",
38 "Implement PII redaction before sending to API",
39 ],
40 "access_control": [
41 "Use per-service API keys (not shared keys)",
42 "Set credit limits per key to isolate blast radius",
43 "Rotate keys on a 90-day schedule",
44 "Store keys in secrets manager (not .env files in repos)",
45 "Enable management keys for programmatic key provisioning",
46 ],
47 "audit_trail": [
48 "Log every API call with generation_id, model, user_id, cost",
49 "Hash prompts (SHA-256) instead of logging raw content",
50 "Retain audit logs per regulation (90d operational, 7yr financial)",
51 "Ship logs to append-only storage (S3, immutable DB)",
52 ],
53 "provider_selection": [
54 "Route regulated data only to compliant providers",
55 "Use provider routing to exclude non-compliant providers",
56 "Document which models are approved for which data classifications",
57 "Test that fallback routing doesn't route to unapproved providers",
58 ],
59}
60```
61
62## Provider Routing for Compliance
63
64```python
65import os
66from openai import OpenAI
67
68client = OpenAI(
69 base_url="https://openrouter.ai/api/v1",
70 api_key=os.environ["OPENROUTER_API_KEY"],
71 default_headers={"HTTP-Referer": "https://my-app.com", "X-Title": "my-app"},
72)
73
74# Route ONLY to specific providers (e.g., Anthropic for SOC2)
75response = client.chat.completions.create(
76 model="anthropic/claude-3.5-sonnet",
77 messages=[{"role": "user", "content": "Analyze this contract..."}],
78 max_tokens=2048,
79 extra_body={
80 "provider": {
81 "order": ["Anthropic"], # Only Anthropic's infrastructure
82 "allow_fallbacks": False, # Do NOT fall back to other providers
83 },
84 },
85)
86
87# Verify which provider actually served the request
88print(f"Served by: {response.model}") # Should match anthropic/claude-3.5-sonnet
89```
90
91## Data Classification Matrix
92
93| Classification | Allowed Providers | Controls |
94|---------------|-------------------|----------|
95| Public | Any (including `:free`) | Standard logging |
96| Internal | Tier 1 (OpenAI, Anthropic, Google) | Audit logging, key limits |
97| Confidential | Anthropic, OpenAI (API-only) | PII redaction, no free models |
98| Restricted/PHI | BYOK only or self-hosted | Full audit, encryption at rest |
99
100## BYOK for Data Sovereignty
101
102```python
103# Bring Your Own Key -- requests go directly to provider
104# OpenRouter acts as router only; data doesn't persist on OpenRouter
105response = client.chat.completions.create(
106 model="openai/gpt-4o",
107 messages=[{"role": "user", "content": "Process this..."}],
108 max_tokens=1024,
109 extra_body={
110 "provider": {
111 "order": ["OpenAI"],
112 "allow_fallbacks": False,
113 },
114 },
115 # With BYOK, configure your provider key in OpenRouter dashboard
116 # Data flows: your app -> OpenRouter (routing only) -> OpenAI (your account)
117)
118```
119
120## Compliance Audit Script
121
122```bash
123#!/bin/bash
124echo "=== OpenRouter Compliance Audit ==="
125
126# 1. Verify API key has credit limit set
127echo "1. Key configuration:"
128curl -s https://openrouter.ai/api/v1/auth/key \
129 -H "Authorization: Bearer $OPENROUTER_API_KEY" | \
130 jq '{label: .data.label, limit: .data.limit, is_free_tier: .data.is_free_tier}'
131
132# 2. Check if using free tier (not suitable for regulated data)
133IS_FREE=$(curl -s https://openrouter.ai/api/v1/auth/key \
134 -H "Authorization: Bearer $OPENROUTER_API_KEY" | jq -r '.data.is_free_tier')
135[ "$IS_FREE" = "true" ] && echo "WARNING: Free tier. Not suitable for regulated data."
136
137# 3. Scan for hardcoded keys in source
138FOUND=$(grep -r "sk-or-v1-" --include="*.py" --include="*.ts" --include="*.js" . 2>/dev/null | grep -v node_modules | wc -l)
139echo "Hardcoded keys found: $FOUND"
140```
141
142## Output
143
144- A pass/fail/warn compliance report from the automated checker in the references, one line per control (API key storage, HTTPS enforcement, max_tokens, error handling, audit logging)
145- Key-configuration JSON (`label`, `limit`, `is_free_tier`) plus a free-tier warning and a count of hardcoded keys found in source, from the Compliance Audit Script
146- A provider-pinned client configuration (`provider.order` + `allow_fallbacks: False`) that cannot route regulated data to unapproved providers
147- A filled-in markdown compliance checklist (template in the references) covering security, data privacy, reliability, observability, and cost controls
148
149## Examples
150
151Running `run_compliance_review()` from the references against a healthy integration:
152
153```text
154Compliance: 5/5 passed, 0 failed, 0 warnings
155 [OK] api_key_storage: Key loaded from environment variable
156 [OK] https_enforcement: HTTPS enforced
157 [OK] max_tokens: max_tokens set to 500
158 [OK] error_handling: Error handling present
159 [OK] audit_logging: Audit logging configured
160```
161
162Any `[FAIL]` line maps to a checklist item above — fix it and re-run until clean. More worked examples: `references/examples.md`.
163
164## Error Handling
165
166| Error | Cause | Fix |
167|-------|-------|-----|
168| Request routed to unapproved provider | `allow_fallbacks: true` (default) | Set `allow_fallbacks: false` with explicit `order` |
169| Key exposed in logs | Raw API key logged | Add PII redaction for `sk-or-v1-*` pattern |
170| No audit trail for request | Logging middleware bypassed | Make audit logging a required wrapper |
171| Free model used for regulated data | No model allowlist | Implement model allowlist in client wrapper |
172
173## Enterprise Considerations
174
175- OpenRouter does not train on API data, but upstream providers may have different terms for API vs consumer use
176- Use `provider.order` + `allow_fallbacks: false` to guarantee data only flows to approved providers
177- BYOK eliminates OpenRouter as a data processor for inference (routing metadata still transits)
178- Document the data flow diagram for auditors: client -> OpenRouter (routing) -> provider (inference)
179- Implement client-side PII redaction as defense-in-depth
180- Consider self-hosted or VPC deployments for restricted/PHI data
181
182## References
183
184- Examples | Errors
185- [Privacy Policy](https://openrouter.ai/privacy) | [Provider Routing](https://openrouter.ai/docs/features/provider-routing)