Developer Integration

Integrate veriqo.dev into your application in under 5 minutes. Fully OpenAI SDK compatible.

Quick Start — 3 Steps to Compliance
1

Get your API key

Create an account and grab your API key from the dashboard.

pk_live_abc...xyz
2

Change your base URL

Point your existing OpenAI SDK to the veriqo.dev endpoint. That's it — two lines.

3

Ship with compliance

Every request is now scanned for PII, classified by risk, and fully audit-trailed.

Integration Examples
app.py
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 classified
OpenAI SDK CompatibleStreaming SupportedFunction CallingVision / Multimodal
API Endpoints

Base URL: https://veriqo.dev

POST
/v1/chat/completions

Create a chat completion (OpenAI-compatible)

POST
/v1/completions

Create a text completion (legacy)

POST
/v1/embeddings

Create text embeddings

GET
/v1/models

List available models and their compliance status

GET
/v1/audit/{request_id}

Retrieve the full audit trail for a request

GET
/v1/compliance/report

Generate a compliance report for a date range

veriqo.dev Response Headers

Every response from veriqo.dev includes compliance metadata in HTTP headers.

X-Veriqo-Request-Id

Unique request identifier for audit lookup

X-Veriqo-Risk-Level

EU AI Act risk classification (HIGH / MEDIUM / LOW)

X-Veriqo-PII-Detected

Whether PII was found and redacted (true / false)

X-Veriqo-Model-Used

The actual model that served the request

X-Veriqo-Cost

Total cost for this request in EUR

X-Veriqo-Audit-Id

Reference ID for the compliance audit entry

Supported Models

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

Google

gemini-3-pro

gemini-3-flash

gemini-3-flash-lite