🇪🇺 Static IP for Corti AI — Healthcare AI Proxy

🇪🇺 Static IP for Corti AI

Calling Corti AI APIs from containers, serverless functions, or healthcare platforms? Your dynamic outbound IP changes on every deploy. Route speech-to-text, medical coding, and all Corti API calls through a dedicated static EU IP for HIPAA-compliant whitelisting.

corti-stt.py

import requests

# Route through static EU IP

# HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443

proxies = {

  "https": "https://user:pass@eu-01.outboundgateway.com:8443"

}

resp = requests.post(

  "https://api.corti.ai/v1/transcribe",

  headers={"Authorization": "Bearer YOUR_KEY"},

  files={"audio": open("consultation.wav", "rb")},

  proxies=proxies

)

The Problem

Healthcare platforms and EHR systems require IP whitelisting for API access — but your infrastructure IPs keep changing

Healthcare API Security Requirements

EHR systems, hospital networks, and healthcare platforms require IP whitelisting for API access. Patient data flows demand strict access controls.

Dynamic IPs in Healthcare Infrastructure

Containers, serverless functions, and cloud deployments change IPs constantly. Your whitelisted IP becomes invalid on every deploy or scale event.

HIPAA & Compliance Failures

Compliance audits require stable, auditable outbound IPs for protected health information (PHI) flows. Unstable IPs trigger audit findings and access revocations.

Multi-Environment Complexity

Dev, staging, and production environments each need separate IP management. Different microservices call Corti from different IPs — unmanageable at scale.

When Your Compliance Team Asks

"All API access must be restricted to approved IP addresses for HIPAA compliance."

You need one stable IP to give them — not an IP that changes with every deployment.

The Solution

Route Corti AI API Calls Through a Dedicated HTTPS Proxy with Static IP

Your Healthcare App

HTTPS Proxy

(Static EU IP)

Corti AI API

Corti AI sees one fixed EU IP address — every API call from speech-to-text to medical coding to text generation.

Works with all Corti APIs — speech-to-text, medical coding, text generation, agentic framework
Set HTTPS_PROXY as an environment variable — zero code changes required
TLS passthrough — patient data and API keys stay encrypted end-to-end

Why Teams Choose This for Corti AI

One static IP to whitelist — works across all Corti endpoints (speech-to-text, medical coding, text generation)
HIPAA audit trail — stable outbound IP for protected health information (PHI) flow compliance
EU-hosted infrastructure — Corti is Denmark-based, perfect geographic alignment
GDPR + HIPAA dual compliance — EU data residency with healthcare-grade security
Works with Corti speech-to-text, medical coding, text generation, and the agentic framework
Consolidates API calls from all services — EHR integrations, Lambda, Docker, Kubernetes — into one IP

Designed For

Healthcare Developers

Building healthcare applications with Corti APIs that need a stable outbound IP for HIPAA compliance and EHR integration

MedTech SaaS Builders

Running MedTech platforms with Corti-powered features that need IP-whitelisted API access for healthcare clients

Hospital IT Teams

Integrating Corti AI into hospital systems and EHR platforms with strict IP whitelisting and network security requirements

Compliance Officers

Ensuring HIPAA and GDPR compliance for healthcare AI integrations with auditable outbound IP trails

Implementation

Set the proxy URL as an environment variable. All Corti AI API calls route through your static IP. No code changes needed.

Python (Speech-to-Text)

Route Corti speech-to-text API calls through your static EU IP using the requests library.

# Set environment variable (recommended)
# export HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443

import requests
import os

# Option 1: Uses HTTPS_PROXY env var automatically
resp = requests.post(
    "https://api.corti.ai/v1/transcribe",
    headers={"Authorization": f"Bearer {os.environ['CORTI_API_KEY']}"},
    files={"audio": open("consultation.wav", "rb")}
)

# Option 2: Explicit proxy configuration
proxies = {
    "https": "https://user:pass@eu-01.outboundgateway.com:8443"
}
resp = requests.post(
    "https://api.corti.ai/v1/transcribe",
    headers={"Authorization": f"Bearer {os.environ['CORTI_API_KEY']}"},
    files={"audio": open("consultation.wav", "rb")},
    proxies=proxies
)

Node.js (Medical Coding)

Route Corti medical coding API calls through your static EU IP using fetch.

# Set in your environment or .env
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443

// Use node-fetch or undici with proxy support
import { CortiClient } from '@corti/sdk';

// SDK auto-detects HTTPS_PROXY env var
const client = new CortiClient();

const result = await client.code({
  transcript: "Patient presents with chest pain...",
  codeSystem: "ICD-10"
});

Environment Variable Setup

Works everywhere — Docker, Lambda, Kubernetes, CI/CD. Set it once, all Corti AI API calls use your static IP.

# Set in your environment, .env, or platform config
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
HTTP_PROXY=https://user:pass@eu-01.outboundgateway.com:8443

# Most HTTP clients (requests, fetch, axios)
# automatically detect and use HTTPS_PROXY.
# No code changes needed.

📖 Complete Documentation: For detailed examples, error handling, and advanced configurations, see our Python SSL Proxy Guide, Node.js Guide, and all other language guides.

Built for European Healthcare

EU-hosted infrastructure with GDPR and HIPAA-conscious data handling for your Corti AI healthcare integrations.

EU-Hosted Infrastructure

Corti is based in Denmark, and so is our proxy infrastructure. Your healthcare AI traffic stays entirely within the EU.

GDPR + HIPAA Dual Compliance

TLS passthrough means your patient data and API keys are never visible to the proxy layer. Meets both EU and US healthcare standards.

No US-Based Routing

API traffic routes entirely within EU infrastructure. No detours through US servers that could complicate healthcare compliance.

Clear Outbound Identity for Audits

One static IP provides a clear, auditable outbound identity for HIPAA security reviews and compliance audits.

Why Developers Choose OutboundGateway for Corti AI

Dedicated Static IP

One fixed IP for all Corti AI API calls. Whitelist it once in your healthcare platform settings. Works across all Corti APIs.

Zero Code Changes

Set the HTTPS_PROXY env var. Your existing HTTP client automatically detects it. Your Corti integrations work as-is.

EU-Hosted Infrastructure

European data centers. GDPR-conscious setup. Perfect for healthcare businesses with EU compliance requirements.

All Corti APIs

Speech-to-text, medical coding, text generation, agentic framework — one static IP covers every Corti endpoint.

End-to-End Encryption

TLS passthrough means we can't see your traffic. Patient data, API keys, and medical transcripts stay private.

Simple Transparent Pricing

€29/month flat. No usage tiers, no per-request billing, no surprises. Cancel anytime.

Get Your Static EU IP for Corti AI

Stop worrying about dynamic IPs blocking your Corti AI API access. Start using a dedicated, EU-based static IP for HIPAA-compliant healthcare integrations.

€29/month starter plan • 7-day refund policy • Direct founder support

Still Deciding?

We're happy to help you determine if OutboundGateway is the right fit for your Corti AI healthcare integrations.

Contact Our Founders →