Your ifap medication database and THERAFOX interaction checks keep failing because your cloud platform rotates IPs and breaks the German healthcare firewall. Route all ifap API calls through two fixed EU IPs from an EU-native, sovereign provider.
# .env
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
import requests
r = requests.get(
"https://api.ifap.de/praxis/medikament",
headers={"Authorization": "Bearer .."}
)
ifap connects your practice software to critical drug safety data. German healthcare networks enforce strict IP whitelisting, and your cloud platform's rotating IPs keep breaking it.
Medical practices, hospitals, and pharmacy networks in Germany operate under strict data security frameworks (GDPR, SGB V). Ifap API access is restricted to whitelisted IPs. When your cloud app's outbound IP rotates, the firewall blocks the call and doctors can't access drug data.
When a doctor prescribes medication and your app calls THERAFOX for interaction safety checks, a blocked IP means the check doesn't return. The doctor either waits or prescribes without the safety check. That's a patient safety risk.
German healthcare data falls under GDPR Article 9 (special category data) and SGB V. Auditors need a documented, stable outbound IP for every ifap API call that processes medication or patient data. Dynamic IPs make compliance reporting impossible.
Ifap is a German provider serving German healthcare. Your integration traffic must stay within EU jurisdiction. If your cloud platform routes through US data centres, you violate data residency requirements. You need an EU-native, sovereign proxy.
Every call your app makes to ifap for medication data, THERAFOX interaction checks, or medication plans leaves from the same pair of EU addresses. From an EU-native, sovereign provider. Ifap is German, and so is OutboundGateway.
Set HTTPS_PROXY and your existing code works as-is.
Your existing code works as-is. requests reads HTTPS_PROXY automatically.
# .env
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
IFAP_API_TOKEN=your_token
import os
import requests
# requests honours HTTPS_PROXY automatically
r = requests.get(
"https://api.ifap.de/praxis/medikament",
headers={"Authorization": f"Bearer {os.environ['IFAP_API_TOKEN']}"},
params={"pzn": "12345678"},
)
print(r.json())
Pass the proxy explicitly with https-proxy-agent.
// .env
HTTPS_PROXY=https://user:pass@eu-01.outboundgateway.com:8443
const { HttpsProxyAgent } = require('https-proxy-agent');
const agent = new HttpsProxyAgent(process.env.HTTPS_PROXY);
// Every ifap call routes through your fixed EU IP
const res = await fetch('https://api.ifap.de/therafox/interactions', {
headers: { 'Authorization': 'Bearer ..' },
agent,
});
Set it wherever your healthcare app runs.
# Docker Compose
services:
app:
env_file: .env
# Kubernetes: Secret
env:
- name: HTTPS_PROXY
valueFrom:
secretKeyRef:
name: outboundgateway-proxy
key: proxy-url
Two IPs, EU-native and sovereign
Your account comes with two static IP addresses in EU data centres, owned and operated by an EU company. ifap is German, OutboundGateway is EU-based. Your healthcare traffic stays EU-to-EU, sovereign and GDPR-compliant. If one proxy node is briefly unavailable, traffic shifts to the other.
📖 Complete Documentation: For detailed examples, error handling, and other languages, see the Python SSL Proxy Guide, Node.js Guide, and all other language guides.
Two addresses to whitelist on German healthcare firewalls, with automatic failover.
Set one env var and your existing requests or fetch calls to ifap work as-is.
An EU company, hosted in EU data centres. Healthcare traffic never leaves EU jurisdiction.
Arzneimitteldatenbank, THERAFOX, Medikationsplan. One pair covers every ifap endpoint.
TLS passthrough means the proxy can't read your traffic. Medication data and patient IDs stay private.
Starting from €19/month. Flexible plans for every scale. Cancel anytime.
Stop letting dynamic IPs break your German healthcare API access. Set one env var and every ifap call routes through two fixed EU IPs from an EU-native, sovereign provider.
€19/month starter plan • 7-day refund policy • Direct founder support
Yes. ifap operates under German healthcare regulations and connects to practice software, hospital networks, and pharmacy systems that enforce strict IP whitelisting. When your cloud app's outbound IP rotates, those calls get blocked. OutboundGateway gives you two fixed EU IPs that never change, so the firewall whitelist always passes.
Yes. The proxy isn't endpoint-specific. Whether your app queries the Arzneimitteldatenbank (medication database), calls THERAFOX for interaction checks, or generates a Medikationsplan, all of it routes through the same fixed pair of EU IPs. Set HTTPS_PROXY once and every ifap endpoint is covered.
Yes. OutboundGateway is an EU company, incorporated and operated within the EU. Our proxy infrastructure runs entirely in EU data centres. We are not a US company with EU servers. Your healthcare API traffic stays within EU jurisdiction, under EU law, managed by an EU company. That's what sovereign means.
Happy to talk through how a two-IP EU egress fits your ifap integration, whether it's a practice tool, pharmacy system, or hospital app.
Contact Our Founders →