Slowapi
A rate limiter for Starlette and FastAPI
Install / Use
/learn @laurentS/SlowapiREADME
SlowApi
A rate limiting library for Starlette and FastAPI adapted from flask-limiter.
This package is used in various production setups, handling millions of requests per month, and seems to behave as expected.
There might be some API changes when changing the code to be fully async, but we will notify users via appropriate semver version changes.
The documentation is on read the docs.
Quick start
Installation
slowapi is available from pypi so you can install it as usual:
$ pip install slowapi
Features
Most feature are coming from FlaskLimiter and the underlying limits.
Supported now:
- Single and multiple
limitdecorator on endpoint functions to apply limits - redis, memcached and memory backends to track your limits (memory as a fallback)
- support for sync and async HTTP endpoints
- Support for shared limits across a set of routes
- The library aims to support all currently supported versions of python
Limitations and known issues
- The
requestargument must be explicitly passed to your endpoint, orslowapiwon't be able to hook into it. In other words, write:
@limiter.limit("5/minute")
async def myendpoint(request: Request)
pass
and not:
@limiter.limit("5/minute")
async def myendpoint()
pass
websocketendpoints are not supported yet.
Developing and contributing
PRs are more than welcome! Please include tests for your changes :)
The package uses poetry to manage dependencies. To setup your dev env:
$ poetry install
To run the tests:
$ pytest
Credits
Credits go to flask-limiter of which SlowApi is a (still partial) adaptation to Starlette and FastAPI.
It's also important to mention that the actual rate limiting work is done by limits, slowapi is just a wrapper around it.
Related Skills
node-connect
336.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
claude-opus-4-5-migration
83.0kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
frontend-design
83.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
model-usage
336.9kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
