Skip to main content

Overview

The Nango Proxy is Nango’s authenticated request gateway for external APIs. You send requests to Nango using the same HTTP method, path, parameters, and body as the target API. Nango resolves the provider, injects credentials, executes the request, and returns the response.

How it works

Send an HTTP request via Nango’s Proxy
const res = await nango.post({
    endpoint: '/external-endpoint',
    integrationId: integrationId,
    connectionId: connectionId,
    data: { ... }
});

Capabilities

Request passthrough

  • Same request shape as the target API
  • Works with any HTTP-based API

Credential injection

  • Credentials injected automatically
  • Works regardless of provider auth conventions

Observability & error handling

  • Centralized request logging
  • Monitoring all outbound API traffic
  • Configurable retries and rate-limit handling

Security

  • No credentials in application code or logs
  • Single secure egress point

Next step