From be0fbb502cddedb78c7a14bb4e2764d71ba4c96b Mon Sep 17 00:00:00 2001 From: Malin Date: Wed, 6 May 2026 09:26:50 +0200 Subject: [PATCH] fix: raise /api/domains limit cap from 500 to 5000 FastAPI was returning 422 for limit=5000, causing d.results to be undefined and the table to show 0 results. Matches /api/enriched cap. Co-Authored-By: Claude Sonnet 4.6 --- app/beauty_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/beauty_main.py b/app/beauty_main.py index 93a8a07..31e12d8 100644 --- a/app/beauty_main.py +++ b/app/beauty_main.py @@ -132,7 +132,7 @@ async def get_index_status(): async def domains( tld: str = Query(None), page: int = Query(1, ge=1), - limit: int = Query(100, ge=1, le=500), + limit: int = Query(100, ge=1, le=5000), live_only: bool = Query(False), alpha_only: bool = Query(False), no_sld: bool = Query(False),