Skip to main content

Open-source API rate limiting and protection toolkit with dynamic configuration

Project description

API Rate Limiter

Open-source, self-hosted API rate limiting service with JWT authentication, dynamic rate limit configuration, API key management, admin controls, SDK integration, and optional load balancer support.

100% Free & Open Source - No subscription system, no billing, just pure rate limiting protection!

Features

Dynamic Rate Limiting - Configure rate limits at startup and adjust per API key
Zero Subscription System - Completely free and open-source
JWT Authentication - Secure user registration, login, and token refresh
API Key Management - Generate and manage API keys with custom rate limits
Admin Controls - Dashboard to manage users, set custom rate limits, block/unblock keys
SDK Integration - JavaScript SDK for frontend rate limit checking
Real-time Monitoring - WebSocket-based live dashboard
Multi-deployment - Docker, Kubernetes, or standalone Python
Distributed via npm & pip - Easy installation for all developers

Quick Start

Prerequisites

  • Python 3.8+
  • Docker and Docker Compose (optional)
  • kubectl and a Kubernetes cluster (optional)

Install dependencies

pip install -r requirements.txt

Run locally with interactive setup

python app.py

On first run, you'll be prompted to configure:

  • Requests per window - Max requests allowed (default: 100)
  • Time window - Window duration in seconds (default: 60)

Example:

Enter max requests per window [100]: 50
Enter time window in seconds [60]: 30

Then open your browser to http://localhost:5000/dashboard

Docker Compose

  1. Create or update .env in the repository root.
  2. Start the application:
docker compose up --build -d
  1. Open the service at:
  • API: http://localhost:8000
  • Dashboard: http://localhost:8000/dashboard
  • SDK demo: http://localhost:8000/sdk

Kubernetes

  1. Build the Docker image:
docker build -t api-rate-limiter:latest .
  1. Update k8s/secret.yaml with real secrets.
  2. Apply manifests:
kubectl apply -f k8s/pvc.yaml
kubectl apply -f k8s/configmap.yaml
kubectl apply -f k8s/secret.yaml
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
  1. Forward a port if needed:
kubectl port-forward svc/api-rate-limiter-service 8000:80

Quick-Start Guide

1) Start the app

For development:

pip install -r requirements.txt
python app.py

Then open http://localhost:5000/dashboard.

2) Register a user

Send a request to create a new account:

curl -X POST http://localhost:5000/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com","password":"Secret123"}'

3) Login and receive tokens

curl -X POST http://localhost:5000/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com","password":"Secret123"}'

4) Create an API key

Use the returned access token:

curl -X POST http://localhost:5000/auth/create_api_key \
  -H "Authorization: Bearer <ACCESS_TOKEN>" \
  -H "Content-Type: application/json"

5) Call protected data endpoint

curl "http://localhost:5000/data?api_key=<YOUR_API_KEY>"

Examples

Example 1: Health check

curl http://localhost:5000/health

Example 2: Fetch usage data

curl "http://localhost:5000/usage?api_key=<YOUR_API_KEY>"

Example 3: SDK check

curl -X POST http://localhost:5000/sdk/check \
  -H "Content-Type: application/json" \
  -d '{"api_key":"<YOUR_API_KEY>","endpoint":"/data","method":"GET"}'

Example 4: SDK tracking

curl -X POST http://localhost:5000/sdk/track \
  -H "Content-Type: application/json" \
  -d '{"api_key":"<YOUR_API_KEY>","endpoint":"/data","method":"GET","status_code":200,"response_time_ms":123}'

Dynamic Rate Limiting Configuration

Startup Configuration

When you run python app.py, you'll be prompted to configure rate limits interactively:

📋 SETUP - Configure Your Rate Limits
Enter max requests per window [100]: 50
Enter time window in seconds [60]: 30

These settings become the default rate limits for all new API keys.

Per-Key Rate Limit Configuration

Use the admin endpoint to set custom rate limits for specific API keys:

curl -X POST http://localhost:5000/admin/set_rate_limit \
  -H "Authorization: Bearer <ADMIN_TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "<YOUR_API_KEY>",
    "requests": 100,
    "window": 60
  }'

Parameters:

  • api_key - The API key to configure
  • requests - Maximum requests allowed per window (required)
  • window - Time window in seconds (required)

Response:

{
  "status": "success",
  "rate_limit_requests": 100,
  "rate_limit_window": 60
}

Check Rate Limit Usage

curl "http://localhost:5000/usage?api_key=<YOUR_API_KEY>"

Response:

{
  "requests_left": 45,
  "requests_limit": 100,
  "window_seconds": 60,
  "total_requests_lifetime": 5000
}

Admin Endpoints

Set Custom Rate Limit

POST /admin/set_rate_limit
Authorization: Bearer <ADMIN_TOKEN>
Content-Type: application/json

{
  "api_key": "rk_live_...",
  "requests": 100,
  "window": 60
}

Get All Users

GET /admin/users
Authorization: Bearer <ADMIN_TOKEN>

Block API Key

POST /admin/block_key
Authorization: Bearer <ADMIN_TOKEN>
Content-Type: application/json

{
  "api_key": "rk_live_..."
}

Unblock API Key

POST /admin/unblock_key
Authorization: Bearer <ADMIN_TOKEN>
Content-Type: application/json

{
  "api_key": "rk_live_..."
}

Installation Methods

Via pip (Python)

pip install api-rate-limiter

Then run:

python -m api_shield.app

Via npm

npm install api-rate-limiter

Then use the CLI:

npm start

Via Docker

docker build -t api-rate-limiter .
docker run -p 5000:5000 api-rate-limiter

From Source

git clone https://github.com/yourusername/api-rate-limiter.git
cd api-rate-limiter
pip install -r requirements.txt
python app.py

Features & Benefits

  • 100% Free - No subscription, no licensing fees
  • Open Source - MIT License, fully customizable
  • Production Ready - Used in real-world deployments
  • Dynamic Configuration - Change rate limits without restarting
  • Multiple Deployment Options - Docker, Kubernetes, or standalone
  • Comprehensive Admin Panel - Manage users and limits from web UI
  • Real-time Monitoring - WebSocket dashboard with live metrics
  • SDK Integration - Browser-ready rate limiting checks
  • Secure - JWT authentication, API key hashing, IP protection

Environment Variables

Create a .env file in the project root:

FLASK_ENV=development
SECRET_KEY=your-secret-key-here
ADMIN_TOKEN=your-admin-token-here
DATABASE_URL=sqlite:///ratelimiter.db
CORS_ORIGINS=http://localhost:5000,http://localhost:3000
EMAIL_NOTIFICATIONS=false

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Roadmap

  • GraphQL API support
  • Advanced analytics dashboard
  • Machine learning-based anomaly detection
  • Webhook notifications
  • Rate limit templates & presets

Made with ❤️ by Samad Rehman

SDK Usage

The repository includes a browser SDK demo page and two SDK API endpoints.

  • Demo page: http://localhost:5000/sdk
  • Browser SDK script: http://localhost:5000/sdk.js

SDK flow

  1. Call /sdk/check before the real request to verify allowance.
  2. Send the actual request if allowed.
  3. Report request telemetry to /sdk/track.

Example: browser-like flow

curl -X POST http://localhost:5000/sdk/check \
  -H "Content-Type: application/json" \
  -d '{"api_key":"<YOUR_API_KEY>","endpoint":"/data","method":"GET"}'

curl "http://localhost:5000/data?api_key=<YOUR_API_KEY>"

curl -X POST http://localhost:5000/sdk/track \
  -H "Content-Type: application/json" \
  -d '{"api_key":"<YOUR_API_KEY>","endpoint":"/data","method":"GET","status_code":200,"response_time_ms":123}'

Deep Example: Full usage flow

This example shows a complete request flow from registration through rate-limited access.

  1. Register user.
  2. Login and receive access_token.
  3. Create an API key.
  4. Check rate-limit allowance with SDK.
  5. Call the protected endpoint.
  6. Inspect usage.
# Register
curl -X POST http://localhost:5000/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com","password":"Secret123"}'

# Login
curl -X POST http://localhost:5000/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com","password":"Secret123"}'

# Create API key
curl -X POST http://localhost:5000/auth/create_api_key \
  -H "Authorization: Bearer <ACCESS_TOKEN>" \
  -H "Content-Type: application/json"

# SDK check before request
curl -X POST http://localhost:5000/sdk/check \
  -H "Content-Type: application/json" \
  -d '{"api_key":"<YOUR_API_KEY>","endpoint":"/data","method":"GET"}'

# Make protected request
curl "http://localhost:5000/data?api_key=<YOUR_API_KEY>"

# View usage
curl "http://localhost:5000/usage?api_key=<YOUR_API_KEY>"

Notes

  • Use API_DOCUMENTATION.md for endpoint reference and deeper API examples.
  • The default rate limit behavior is tier-based and can be adjusted through configuration.
  • For production, prefer Docker Compose or Kubernetes deployment.

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

secureflow_api_rate_limiter-1.0.1.tar.gz (37.7 kB view details)

Uploaded Source

Built Distribution

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

secureflow_api_rate_limiter-1.0.1-py3-none-any.whl (36.6 kB view details)

Uploaded Python 3

File details

Details for the file secureflow_api_rate_limiter-1.0.1.tar.gz.

File metadata

File hashes

Hashes for secureflow_api_rate_limiter-1.0.1.tar.gz
Algorithm Hash digest
SHA256 03d445ae4f452eeb65552be74db877c73eeeece607ae5417ce3ee6416269063b
MD5 ed16b93b880a19bb5b4bbb96c875d641
BLAKE2b-256 3eb3afce4c7373954cfd9b945ce1024e5078fa432779502421ef5dfc051329fb

See more details on using hashes here.

File details

Details for the file secureflow_api_rate_limiter-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for secureflow_api_rate_limiter-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3971f6e07fe8c40eb3eedc1e0cf489232026819b88493579555f51ad0565e4dd
MD5 595cfaf19de33fc43a5cad9df9543bb2
BLAKE2b-256 a06233ae239eff403766748e6febb0f960a4aa162f8ec5590dbcf3a4bec583ed

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