Developer Integration
Integrate veriqo.dev into your application in under 5 minutes. Fully OpenAI SDK compatible.
Get your API key
Create an account and grab your API key from the dashboard.
pk_live_abc...xyzChange your base URL
Point your existing OpenAI SDK to the veriqo.dev endpoint. That's it — two lines.
Ship with compliance
Every request is now scanned for PII, classified by risk, and fully audit-trailed.
from openai import OpenAI
client = OpenAI(
base_url="https://veriqo.dev/v1", # veriqo.dev endpoint
api_key="pk_live_abc...xyz", # Your veriqo.dev key
)
response = client.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Analyze this loan application..."}
],
temperature=0.7,
)
print(response.choices[0].message.content)
# ✓ PII auto-redacted ✓ Audit trail logged ✓ Risk classifiedBase URL: https://veriqo.dev
/v1/chat/completionsCreate a chat completion (OpenAI-compatible)
/v1/completionsCreate a text completion (legacy)
/v1/embeddingsCreate text embeddings
/v1/modelsList available models and their compliance status
/v1/audit/{request_id}Retrieve the full audit trail for a request
/v1/compliance/reportGenerate a compliance report for a date range
Every response from veriqo.dev includes compliance metadata in HTTP headers.
X-Veriqo-Request-IdUnique request identifier for audit lookup
X-Veriqo-Risk-LevelEU AI Act risk classification (HIGH / MEDIUM / LOW)
X-Veriqo-PII-DetectedWhether PII was found and redacted (true / false)
X-Veriqo-Model-UsedThe actual model that served the request
X-Veriqo-CostTotal cost for this request in EUR
X-Veriqo-Audit-IdReference ID for the compliance audit entry
OpenAI
gpt-5.2
o3
o3-mini
gpt-4o-mini
Anthropic
claude-opus-4.6
claude-sonnet-4.6
claude-3.5-haiku
Meta
llama-4-maverick
llama-4-scout
llama-3.3-70b
gemini-3-pro
gemini-3-flash
gemini-3-flash-lite