Patent Pending · Clinical AI

The API for
structured
AI communication.

GALEN converts natural language into compact structured tokens — reducing AI input overhead by 30–70%. Built for clinical AI, EHR integrations, and any platform where token efficiency matters.

POST /v1/convert
// Natural language in
const result = await fetch('https://api.galenapi.com/v1/convert', {
  method: 'POST',
  headers: { 'X-GALEN-Key': 'gk_live_...' },
  body: JSON.stringify({
    text: 'Female patient 45 BMI 42 T2DM awaiting bypass',
    domain: 'med'
  })
});

// Compact GALEN token out
// {
//   galen: "D.med: patient | sex=F age=45 BMI=42 | T2DM | bypass+next",
//   reduction: 64,
//   tokens_saved: 28
// }
30–70% Token reduction
<200ms API response time
17 GALEN claims
6 Domain packs
API Reference

Endpoints

All endpoints are served over HTTPS. Authentication uses the X-GALEN-Key header.

POST
/v1/convert
Convert natural language text to a compact GALEN structured token statement
Live
POST
/v1/clinical
Convert clinical speech and return structured patient summary, registry entry, and clinical flags
Live
POST
/v1/voice
Accept base64 audio, transcribe, convert to GALEN, and return structured output in one call
Coming Soon
GET
/v1/domains
List available domain vocabulary packs — MED, FIN, LEG, TECH, BUS, EDU
Coming Soon
POST
/v1/session
Declare a session context [CTX] block — applied automatically to all subsequent calls
Coming Soon

Integrate in minutes.

Three lines of code. Any language. Any platform.

// Install: npm install node-fetch

const response = await fetch('https://api.galenapi.com/v1/convert', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-GALEN-Key': 'gk_live_YOUR_API_KEY'
  },
  body: JSON.stringify({
    text: 'Female patient 45 years old BMI 42 type 2 diabetes awaiting gastric bypass surgery',
    domain: 'med'
  })
});

const { galen, reduction, tokens_saved } = await response.json();

// galen        → "D.med: patient | sex=F age=45 BMI=42 | T2DM | bypass+next"
// reduction    → 64  (percent)
// tokens_saved → 28
# Install: pip install requests

import requests

response = requests.post(
    'https://api.galenapi.com/v1/convert',
    headers={
        'Content-Type': 'application/json',
        'X-GALEN-Key': 'gk_live_YOUR_API_KEY'
    },
    json={
        'text': 'Female patient 45 years old BMI 42 type 2 diabetes awaiting gastric bypass surgery',
        'domain': 'med'
    }
)

data = response.json()
# data['galen']     → "D.med: patient | sex=F age=45 BMI=42 | T2DM | bypass+next"
# data['reduction'] → 64
curl -X POST https://api.galenapi.com/v1/convert \
  -H "Content-Type: application/json" \
  -H "X-GALEN-Key: gk_live_YOUR_API_KEY" \
  -d '{
    "text": "Female patient 45 years old BMI 42 type 2 diabetes awaiting bypass",
    "domain": "med"
  }'

# Response:
# {
#   "galen": "D.med: patient | sex=F age=45 BMI=42 | T2DM | bypass+next",
#   "reduction": 64,
#   "tokens_saved": 28
# }
Use Cases

Built for platforms that talk to AI.

GALEN sits between your users and your AI endpoints — compressing every instruction before it hits your token budget.

🏥
Clinical Documentation

Surgeons and physicians speak naturally. GALEN compresses to structured GALEN-MED tokens for AI processing. Compatible with NBSR and EHR systems.

GALEN-MED
🤖
AI Agent Orchestration

Feed compact structured tokens to your AI agents instead of verbose natural language. Reduce cost and latency across every agent call.

All Domains
🔗
EHR Integration

Structured GALEN-MED output maps directly to EHR field schemas. Reduce manual data entry and transcription errors at point of care.

GALEN-MED
💼
Business Automation

Convert business instructions into compact GALEN-BUS tokens. Automate workflows, generate reports, and draft communications at scale.

GALEN-BUS
⚖️
Legal & Compliance

GALEN-LEG compresses legal instructions and compliance queries. Reduce overhead on AI legal research and document generation tools.

GALEN-LEG
💰
Financial Services

GALEN-FIN structured tokens for financial data entry, reporting, and AI-assisted analysis. Reduce token costs across large-scale financial AI workflows.

GALEN-FIN
Integration targets — contact us for partnership discussions
Suki AI Abridge Nuance Nabla Epic Doximity
Pricing

Simple, usage-based pricing.

Start free. Scale as you grow. Enterprise plans available for platform integrations and EHR vendors.

Starter £99 per month + usage

For teams building their first GALEN integration. Predictable cost, immediate access.

  • 10,000 conversions / month
  • Basic API access
  • 1 workspace
  • GALEN Core + GALEN-MED
  • Email support
  • Then £0.01 per extra conversion
Get Started
Enterprise £2,000+ per month · negotiated volume

For EHR vendors, surgical platforms, and large-scale AI integrations. Priced on volume or demonstrated token savings.

  • Unlimited or negotiated volume
  • White-label use
  • Custom domain vocabulary packs
  • On-premise or private deployment
  • Dedicated support + SLA
  • Enterprise security
Talk to Us
Volume Pricing — Declining Unit Cost
Volume Price per conversion
First 100,000 / month £0.005
Next 1,000,000 / month £0.003
Over 1,000,000 / month Custom
ROI-Based Enterprise Pricing

For large customers, we offer pricing based on demonstrated AI cost savings — aligning our success with yours.

Example: If GALEN reduces your AI token bill from £20,000/month to £8,000/month — a £12,000 saving — we charge £1,000–2,000/month. You keep £10,000+ in savings every month.