skillfed

axioms-fastapi

OAuth2/OIDC authentication and authorization for FastAPI APIs

axioms-fastapi v0.0.13 139.6K downloads/30d#11,294 on PyPI14
Permissive license MIT AGING released

What it is and what it does

axioms-fastapi is a FastAPI middleware and dependency-injection library that validates JWT access tokens issued by OAuth2/OIDC providers and enforces claim-based authorization rules. It fetches and caches the issuer's public key set (JWKS), validates token signatures and claims (audience, issuer, expiration), and provides decorators to protect routes by requiring specific scopes, roles, or permissions. The package is built on fastapi, pyjwt, jwcrypto, python-box, and pydantic-settings, and it handles the token validation layer so your API can focus on business logic.

The library is designed for resource servers that trust an external authorization provider to issue tokens. It supports flexible configuration (environment variables or direct initialization), custom claim names to work with different providers, and both OR and AND logic for permission checks. It also includes optional middleware for automatic token extraction and validation on all requests, setting the token payload on the request state for access in route handlers.

Use it for:

  • Protect FastAPI routes with JWT tokens issued by AWS Cognito, Auth0, or Okta without writing custom validation logic.
  • Enforce role-based access control (RBAC) by checking token claims for specific roles before allowing route access.
  • Implement permission-based authorization for fine-grained resource access (e.g., admin:write, user:read).
  • Validate token signatures and issuer claims to prevent token substitution and algorithm confusion attacks.
  • Build a multi-tenant API where different clients authenticate via a shared OAuth2 provider and are isolated by audience claim.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Adds OAuth2/OIDC JWT token validation and claim-based authorization (scopes, roles, permissions) to FastAPI APIs, with support for tokens from AWS Cognito, Auth0, Okta, Microsoft Entra, and other standard providers.

Yes, with conditions. The package solves a real problem (JWT validation for FastAPI) with low install friction and no security vulnerabilities. However, it is very new (first release 2025-11-09) with minimal adoption (139638 monthly downloads but only 14 GitHub stars), so production use should be preceded by thorough testing against your specific authorization server and load profile. The MIT license and support for modern Python versions (3.8–3.13) are strengths; the aging maintenance status reflects its infancy, not neglect.

Install

axioms-fastapi on PyPI

pip

pip install axioms-fastapi

uv

uv add axioms-fastapi

poetry

poetry add axioms-fastapi

Installing axioms-fastapi

Before you install

Low install friction with a pure-Python wheel. Maintenance status is aging—the package is only days old (first release 2025-11-09, last commit 2025-11-15), so long-term stability and community adoption remain unproven despite active recent development.

License in practice

MIT license is permissive and imposes no restrictions on commercial or private use, modification, or redistribution as long as the license notice is retained.

Quickstart

pip install axioms-fastapi

from fastapi import FastAPI, Depends
from axioms_fastapi import init_axioms, require_auth

app = FastAPI()
init_axioms(app, AXIOMS_AUDIENCE="api.example.com", AXIOMS_ISS_URL="https://auth.example.com")

@app.get("/protected")
async def protected(payload=Depends(require_auth)):
    return {"user_id": payload.sub}

Verify before relying

  • Whether the package has been tested against real-world authorization servers beyond documentation examples
  • Performance characteristics when validating high request volumes or with slow JWKS endpoint responses
  • Whether custom claim namespacing works reliably across different authorization server implementations

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.8)
Install friction low — pure-Python wheel
Runtime dependencies 5 — fastapi, pyjwt, jwcrypto, python-box, pydantic-settings
Maintenance aging — 272 days since the last release
Last repo commit
First released
Downloads 139,638/month — #11,294 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: axioms_fastapi-0.0.13-py3-none-any.whl

Keywords: fastapi, oauth2, oidc, jwt, authentication, authorization, axioms, security

Development Status :: 4 - BetaFramework :: FastAPIIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: SecurityTopic :: Software Development :: Libraries :: Python Modules

Tags

fastapi oauth2 jwt authenticationfastapi oidc token validationfastapi jwt authorizationfastapi cognito auth0 integrationfastapi role-based access controlfastapi permission middlewarefastapi jwt scope validation
oauth2-oidcjwt-validationfastapi-middleware

More Python Modules packages