REST API

Use VeldrixAI from any language via direct HTTP calls to api.veldrixai.ca.

Base URL

https://api.veldrixai.ca/api/v1

Authentication

All API requests must include your API key in the Authorization header:

Authorization: Bearer vx_live_...

POST /analyze

POST https://api.veldrixai.ca/api/v1/analyze
Authorization: Bearer vx_live_...
Content-Type: application/json

{
  "prompt": "What medications is the patient taking?",
  "response": "The patient takes metformin 500mg twice daily.",
  "pillars": ["compliance", "safety"],
  "policy_id": "hipaa-strict",
  "mode": "inline"
}

GET /audit

GET https://api.veldrixai.ca/api/v1/audit?limit=50&action=block
Authorization: Bearer vx_live_...
Was this page helpful?