Short version: your API calls go directly to providers (OpenAI, Stripe, Resend…).
Elding is never in the request path. We store and serve your HTTP API key values, but
your traffic never passes through us.
The common misconception
Elding is not a hosted MITM proxy. A lot of key-management tooling routes your production traffic through a vendor gateway. Elding does not. This is the core of our design.In development
127.0.0.1). It injects the real key
and forwards the request directly to the provider. Elding’s servers only ever see
metadata (the names of the keys referenced), never the request body, query, or response.
In production
The honest trust model
Elding stores and serves your HTTP API key values. To serve them, our servers can decrypt them using envelope encryption, AES‑256‑GCM, and a KEK in KMS. This is a managed model: Elding specializes in API keys, not other application secrets.
We are transparent about this on purpose: the value Elding adds is keeping keys out of your
code and out of your request path, not pretending we never hold them.