OAuth is an open authorization framework that enables third-party applications to access user resources without exposing credentials. It provides a secure, token-based delegation mechanism widely used across the web for granting limited access to APIs and services on behalf of users.
OAuth
OAuth, short for Open Authorization, is the open framework for delegated access that lets a user authorize an application to act against an API on their behalf without ever sharing a password. Rather than handing over credentials, the application obtains a scoped, revocable token from an authorization server and presents it to the resource. It is the authorization backbone of the modern API economy, most commonly deployed today in its OAuth 2.0 form.
- Delegated access - A user grants an app limited access to their resources instead of sharing a login.
- Token-based - Access is carried by tokens that are short-lived, scoped, and revocable rather than by static secrets.
- Scopes - Permission strings bound exactly what a token can read or write.
- Separation of concerns - Distinct roles for the user, the app, the authorization server, and the resource server keep credentials isolated.
- Broad adoption - Supported by essentially every major platform, from Google and GitHub to open-banking regimes.
Across the sectors I score, the presence of OAuth is one of the clearest signals that a provider has a real authorization posture rather than a query-string API key bolted on. In regulated spaces like open banking, authorization_code plus client_credentials sits at the center of consent, accreditation, and audit. The agentic turn is now pushing the harder question — not just whether OAuth is present, but whether the whole grant, client-registration, and token lifecycle is scriptable enough for an autonomous agent to onboard and act without a human clicking through a console, which is exactly what my recent provider write-ups keep measuring.
Referenced in API Evangelist papers
This standard shows up in my published research. These reports read the machine-readable evidence provider by provider — and put this standard in the context of a real sector.
The State of US Insurance APIs
OAuth appears across insurance mostly inside modeled specifications; genuine provider-published auth evidence exists at seven vendors.
The State of Australian Banking APIs
OAuth2 authorization_code + client_credentials, gated behind CDR accreditation and consumer consent.
The State of Market Data APIs
In market data, OAuth is the mark of a real auth posture — against a field still shipping query-string API keys.
Referenced on the API Evangelist blog
Where this standard shows up across sixteen years of my writing at apievangelist.com — how it fits into API design, governance, and the agentic turn.
Google Launches OAuth 2.0 Playground
2011-11-08
Google Apps Supports OAuth
2010-10-12