Lightweight HTTP infrastructure that routes, transforms, and monitors your API traffic globally — with zero configuration overhead.
"Ship your API in minutes, not days. Infrastructure should never be the bottleneck."
IMHC is a lightweight HTTP routing and transformation layer designed for teams that need global API infrastructure without the operational overhead. All requests are routed through our edge network, processed in under 12ms on average, and delivered to your upstream service.
The API is organized around REST. We use standard HTTP verbs, return JSON-encoded responses, and use standard HTTP response codes to indicate errors.
https://api.imhc.win/v1
All API requests must include your API key in the Authorization header using the Bearer scheme. You can generate and manage API keys from your dashboard.
Authorization: Bearer imhc_live_xxxxxxxxxxxxxxxx
The core routing endpoint accepts a target URL and optional configuration parameters. IMHC selects the optimal edge node automatically.
POST /v1/route
| Parameter | Type | Description |
|---|---|---|
| target | string | Required. The upstream URL to route to. |
| ttl | integer | Cache TTL in seconds. Default: 0 (no cache). |
| region | string | Force a specific edge region. Default: auto. |
| retry | integer | Number of retries on 5xx. Default: 2. |
{
"status": "routed",
"latency_ms": 9,
"edge": "fra-01",
"request_id": "req_8xKp2mNvQa",
"upstream_status": 200
}
| Service | Region | Uptime (90d) | Status |
|---|---|---|---|
| API Gateway | Global | 99.97% | Operational |
| Edge — Europe | fra-01, ams-01, lon-01 | 100% | Operational |
| Edge — Asia Pacific | sin-01, nrt-01, hkg-01 | 99.94% | Operational |
| Edge — North America | jfk-01, lax-01, ord-01 | 100% | Operational |
| Webhook delivery | Global | 99.99% | Operational |
| Dashboard & API | Global | 99.95% | Operational |