diff --git a/deadlock_analytics_api/routers/v1.py b/deadlock_analytics_api/routers/v1.py index a5d44f5..8b4a254 100644 --- a/deadlock_analytics_api/routers/v1.py +++ b/deadlock_analytics_api/routers/v1.py @@ -394,7 +394,7 @@ def match_timestamps(req: Request, res: Response, match_id: int) -> list[ActiveM @router.get( "/matches/{match_id}/metadata", - summary="RateLimit: 100req/min 1000req/hour, API-Key RateLimit: 100req/min", + summary="RateLimit: 100req/min 1000req/hour, API-Key RateLimit: 1000req/min", ) def get_match_metadata( req: Request, @@ -406,7 +406,7 @@ def get_match_metadata( res, "/v1/matches/{match_id}/metadata", [RateLimit(limit=100, period=60), RateLimit(limit=1000, period=3600)], - [RateLimit(limit=100, period=60)], + [RateLimit(limit=1000, period=60)], ) res.headers["Cache-Control"] = "public, max-age=3600" query = "SELECT * FROM match_info WHERE match_id = %(match_id)s LIMIT 1"