What the Unified API is
The Unified API exposes normalized endpoints that represent common actions across providers. Instead of learning and maintaining different request shapes for every integration, you call one endpoint and let BundleUp handle provider-specific differences.What the Unified API is not
The Unified API is not a full replacement for provider-specific APIs. It does not attempt to expose every edge case or vendor-specific feature. If you need low-level control or access to provider-unique functionality, you should use the proxy API instead.Execution guarantees
All Unified API requests are executed through the same edge worker as the proxy API. This means:- The same authentication model applies. Requests require a Bearer API key and a connection ID.
- The same per-connection rate limits are enforced.
- The same retry behavior applies to safe, idempotent requests.
- The same logging and observability are available.

