Skip to main content

FastAPI helpers for Better Auth JWT verification

Project description

fastapi-betterauth

FastAPI helpers for Better Auth JWT verification.

The package verifies Better Auth JWTs with PyJWT and JWKS, then exposes the verified claims either through a plain Python verifier or a FastAPI dependency.

Installation

pip install fastapi-betterauth

For FastAPI dependency helpers:

pip install "fastapi-betterauth[fastapi]"

Usage

from fastapi_betterauth import BetterAuthVerifier

verifier = BetterAuthVerifier("https://your-app.example.com")

claims = verifier.validate_token(token)

By default, the verifier:

  • reads keys from /api/auth/jwks
  • verifies the EdDSA algorithm
  • expects iss to match base_url
  • expects aud to match base_url

FastAPI

from typing import Annotated

from fastapi import Depends, FastAPI
from fastapi_betterauth import BetterAuthVerifier

app = FastAPI()
verifier = BetterAuthVerifier("https://your-app.example.com")
current_user = verifier.fastapi_dependency()


@app.get("/me")
def me(claims: Annotated[dict, Depends(current_user)]):
    return claims

Invalid tokens are converted to 401 Unauthorized responses.

Configuration

from fastapi_betterauth import BetterAuthVerifier

verifier = BetterAuthVerifier(
    "https://your-app.example.com",
    jwks_path="/api/auth/jwks",
    issuer="https://your-app.example.com",
    audience="https://your-app.example.com",
    algorithms=("EdDSA",),
    cache_jwk_set=True,
    lifespan=300,
)

Set issuer=None or audience=None to disable that specific validation.

Compatibility API

The older module-level style is still available:

from fastapi_betterauth import init_client, validate_token

init_client("https://your-app.example.com")
claims = validate_token(token)

Prefer BetterAuthVerifier for new code because it avoids global state and works better for tests, multiple apps, and multi-tenant services.

FastAPI demo server

This repository includes a small FastAPI demo in examples/fastapi_demo.py. Use it to test a real bearer token issued by your Better Auth application.

BETTER_AUTH_BASE_URL="http://localhost:3000" uv run python -m uvicorn examples.fastapi_demo:app --reload

The demo reads JWKS from ${BETTER_AUTH_BASE_URL}/api/auth/jwks by default. Override that path with BETTER_AUTH_JWKS_PATH if your Better Auth app uses a different route.

Public route:

curl http://localhost:8000/public

Protected route:

curl \
  -H "Authorization: Bearer $BETTER_AUTH_TOKEN" \
  http://localhost:8000/me

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_betterauth-0.2.4.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastapi_betterauth-0.2.4-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_betterauth-0.2.4.tar.gz.

File metadata

  • Download URL: fastapi_betterauth-0.2.4.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fastapi_betterauth-0.2.4.tar.gz
Algorithm Hash digest
SHA256 9569dd95615b09caf6a59be2ecdb65461a2849a7f4993f8d428d506b9b225a72
MD5 610192d92e8c27c91f54a882be4367ec
BLAKE2b-256 8d49166d3a2c990b0377f343fb0bf4e5f6bd5fafff8edac26b74f5bfbe75b517

See more details on using hashes here.

File details

Details for the file fastapi_betterauth-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: fastapi_betterauth-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fastapi_betterauth-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9c65737bb066d80ff48d874063e857e41a80c7479f261692ecf553b67af67071
MD5 d9ddda831c9563db6a63115dfb8f3504
BLAKE2b-256 a24badb90dc4f0c90728f235b2fc4f48a073bb2d4ccdb2b6b52b83a226973518

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page