Provider
Provider
A provider is an external API that Nango supports — for example, GitHub, Slack, HubSpot, or Salesforce. Nango maintains configuration for each provider: the OAuth endpoints, credential format, base URL, and any quirks of that API.Nango supports 700+ providers out of the box. You never configure these low-level details yourself.How it relates to the rest: You pick a provider when you create an integration. The provider definition tells Nango how to handle auth and API requests for that service.
Integration
Integration
An integration is your configuration for connecting to a provider. It binds a provider (e.g. GitHub) to your Nango environment, including your OAuth credentials (client ID and secret), any custom scopes you need, and a unique identifier.You create integrations in the Nango dashboard or via the API. Each integration has a
providerConfigKey — a unique ID you choose, like github or github-prod.How it relates to the rest: An integration is the template. Every connection is an instance of an integration — one per user.Connection
Connection
A connection represents a single user’s authorization to a single integration. When a user completes the auth flow, Nango creates a connection that stores their credentials (OAuth tokens, API keys, etc.) securely, handling token refresh automatically.Each connection is identified by:
providerConfigKey— the integration it belongs to (e.g.github)connectionId— a string you choose to identify the user (e.g.user-123or a UUID)
providerConfigKey and connectionId together.Auth
Auth
Auth is Nango’s managed authorization system. It embeds a white-label auth flow in your product and handles all credential management for you: OAuth 1.0 and 2.0 flows, API key collection, token refresh, credential storage, and multi-tenant connection management.Your frontend uses the
@nangohq/frontend package to open the auth UI. Your backend never sees raw credentials unless you explicitly retrieve them.How it relates to the rest: Auth creates connections. Once a connection exists, you use the Proxy or Functions to act on it.Nango supports OAuth 2.0, OAuth 1.0, API keys, Basic auth, JWT, and more. The auth method is determined by the provider — you don’t configure it manually.
Proxy
Proxy
The Proxy lets you make authenticated API requests on behalf of any connection without handling credentials directly. You send a request to Nango with an endpoint,
providerConfigKey, and connectionId. Nango looks up the connection, injects the credentials, and forwards the request to the provider.The Proxy also handles:- Automatic token refresh before making the request
- Configurable retries on failure
- Rate limit handling
- Request and response logging in the Nango dashboard
Functions
Functions
Functions are TypeScript scripts you write (or generate with the AI builder) and deploy to Nango’s runtime. They run server-side on Nango’s infrastructure and have access to a Actions run on demand, triggered by your backend. They execute a specific operation — creating a record, sending a message, looking up data — and return a result immediately.How it relates to the rest: Functions run on top of connections. They use the same
nango object with built-in API access, storage, and observability.There are two types of functions:Syncs run on a schedule and continuously pull data from an external API into Nango’s cache. Your backend then reads this data via nango.listRecords(). Syncs handle incremental updates, pagination, and retries automatically.providerConfigKey + connectionId pair to make authenticated requests, but they execute inside Nango’s runtime rather than your backend.How the concepts fit together
Here’s the typical flow for building an integration with Nango:Choose a provider
Browse the 700+ supported APIs (Google, GitHub, Salesforce, Slack, and more) and pick the one you need.
Create an integration
Configure the integration in the Nango dashboard with your OAuth credentials and scopes.
Embed Auth in your product
Add Nango’s frontend SDK to open the managed auth UI when your users connect an account. Nango creates a connection for each user.
Next steps
Quickstart
Make your first authenticated API call in under 5 minutes.
Auth guide
Embed managed auth for 700+ APIs in your product.
Proxy guide
Make authenticated API requests without handling credentials.
Functions guide
Write and deploy TypeScript integration functions.