cURL
curl --request GET \ --url https://api.example.com/api/rate-limits/effective/{client_id}
{ "source": "<string>", "client_id": "<string>", "allowed_limit": 123, "window_seconds": 123, "config_id": 123 }
Get the effective rate limit for a client
client_abc123
curl https://api.sari-platform.com/api/rate-limits/effective/client_abc123 \ -H "X-Client-ID: client_abc123" \ -H "X-API-Key: <api_key>"
override
tier
none
{ "source": "override", "client_id": "client_abc123", "allowed_limit": 5000, "window_seconds": 3600, "config_id": 1 }
{ "source": "tier", "client_id": "client_abc123", "allowed_limit": 1000, "window_seconds": 3600, "config_id": null }
{ "source": "none", "client_id": "client_abc123", "allowed_limit": null, "window_seconds": null, "config_id": null }