Calling Aleph Alpha Luminous or Pharia APIs from containers, serverless, or cloud platforms? Your dynamic outbound IP changes on every deploy. Route LLM completions, embeddings, and multimodal requests through a dedicated static EU IP for GDPR and EU AI Act compliant AI integrations.
import requests
# Route through static EU IP
# HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
resp = requests.post(
"https://api.aleph-alpha.com/complete",
headers={"Authorization": "Bearer KEY"},
json={"model": "luminous-supreme",
"prompt": "Summarize this"}
)
EU AI deployments require stable, auditable outbound IPs — but your infrastructure IPs keep changing
Enterprise AI deployments restrict API keys to approved IP addresses. Your containers, serverless, and cloud services rotate IPs constantly — breaking Aleph Alpha access on every deploy.
Kubernetes pods, Lambda functions, and Docker containers get new IPs on every scale event. Your RAG pipelines and AI features fail silently when the whitelisted IP is no longer valid.
Aleph Alpha is chosen for EU data sovereignty. Compliance audits under GDPR and the EU AI Act demand stable, documented outbound IPs with full data flow traceability.
Dev, staging, and production environments each need separate IP management. Different microservices call Aleph Alpha from different IPs — unmanageable and unauditable at scale.
"All AI API access must use approved EU IP addresses with full traceability for GDPR and EU AI Act compliance."
You need one stable EU IP to give them — not an IP that changes with every deployment.
Your AI Application
HTTPS Proxy
(Static EU IP)
Aleph Alpha API
Aleph Alpha sees your fixed EU IP addresses — every API call from Luminous completions to Pharia inference. Two IPs for high availability.
HTTPS_PROXY as an environment variable — zero code changes required
Building AI applications with Aleph Alpha's Luminous or Pharia models that need a stable outbound IP for enterprise security
Government and public institutions using Aleph Alpha for sovereign AI that requires auditable, EU-only outbound infrastructure
Running production AI workloads with Aleph Alpha that require IP-restricted API access and stable infrastructure across environments
Ensuring GDPR and EU AI Act compliance for AI integrations with auditable outbound IP trails and EU-only data routing
Set HTTPS_PROXY as an environment variable. All Aleph Alpha API calls route through your static EU IP. No code changes needed.
Set HTTPS_PROXY in your environment. The requests library picks it up automatically.
# .env or shell
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
ALEPH_ALPHA_API_KEY=your_api_key
import os
import requests
# requests reads HTTPS_PROXY from the environment automatically
resp = requests.post(
"https://api.aleph-alpha.com/complete",
headers={"Authorization": f"Bearer {os.environ['ALEPH_ALPHA_API_KEY']}"},
json={
"model": "luminous-supreme",
"prompt": "Summarize the following document:",
"maximum_tokens": 256,
},
)
print(resp.json()["completions"][0]["completion"])
Same pattern — set HTTPS_PROXY in your environment. Use https-proxy-agent for explicit control.
// .env or shell
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
ALEPH_ALPHA_API_KEY=your_api_key
const { HttpsProxyAgent } = require('https-proxy-agent');
const agent = new HttpsProxyAgent(process.env.HTTPS_PROXY);
// Every request routes through your static EU IP
const res = await fetch('https://api.aleph-alpha.com/complete', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.ALEPH_ALPHA_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
model: 'luminous-supreme',
prompt: 'Summarize the following document:',
}),
agent,
});
console.log(await res.json());
Set the env var in your platform config. Every environment works the same way.
# Docker Compose: reference a .env file (never hardcode secrets)
services:
app:
env_file:
- .env
# Kubernetes: use a Secret object
env:
- name: HTTPS_PROXY
valueFrom:
secretKeyRef:
name: outboundgateway-proxy
key: proxy-url
# AWS Lambda: set in function environment variables
HTTPS_PROXY=${OUTBOUNDGATEWAY_PROXY_URL}
Two Static IPs for High Availability
You get two static IP addresses (e.g. 51.xx.xx.10 and 51.xx.xx.11). Whitelist both for your IP-restricted API keys — if one proxy node goes down, traffic automatically fails over. No single point of failure for your AI workloads.
📖 Complete Documentation: For detailed examples, error handling, and advanced configurations, see our Python SSL Proxy Guide, Node.js Guide, and all other language guides.
EU-hosted infrastructure designed for GDPR and EU AI Act compliance for your Aleph Alpha integrations.
Aleph Alpha is based in Heidelberg, Germany — and so is our proxy infrastructure. Your AI API traffic stays entirely within the EU. Zero cross-border hops.
TLS passthrough means we never see your prompts or outputs. Stable outbound IPs provide documented data flow for AI system compliance under GDPR and the EU AI Act.
API traffic routes entirely within EU infrastructure. No detours through US servers that would compromise Aleph Alpha's data sovereignty promise.
Two static IPs provide a clear, auditable outbound identity for AI compliance reviews. Automatic failover keeps your AI workloads running during maintenance.
Two fixed IPs for all Aleph Alpha API calls. Whitelist both for IP-restricted keys — automatic failover if one node goes down.
Set the HTTPS_PROXY env var. requests, fetch, the Aleph Alpha SDK, and LangChain detect it automatically. Your AI code works as-is.
European data centers. GDPR-conscious setup. Aleph Alpha is German — your traffic stays in the EU, end to end.
Both model families — Luminous (multimodal) and Pharia (sovereign EU) — one static IP covers every Aleph Alpha endpoint your app uses.
TLS passthrough means we can't see your traffic. Prompts, embeddings, model outputs, and API keys stay completely private.
€29/month flat. No usage tiers, no per-request billing, no surprises. Cancel anytime.
Stop worrying about dynamic IPs breaking your Aleph Alpha API access. Start using a dedicated, EU-based static IP for sovereign, GDPR-compliant AI integrations.
€29/month starter plan • 7-day refund policy • Direct founder support
We're happy to help you determine if OutboundGateway is the right fit for your Aleph Alpha AI integrations.
Contact Our Founders →