The public GET /api/bounties endpoint parses limit and page with Number coercion and only caps the upper limit.\n\nExamples:\n- limit=0 produces .range(0, -1).\n- a negative limit can produce an inverted range.\n- a negative page can make the offset negative.\n\nThe endpoint should fall back to a positive default limit, preserve the existing max limit of 100, and fall back to page 1 for invalid or non-positive page values.
The public GET /api/bounties endpoint parses limit and page with Number coercion and only caps the upper limit.\n\nExamples:\n- limit=0 produces .range(0, -1).\n- a negative limit can produce an inverted range.\n- a negative page can make the offset negative.\n\nThe endpoint should fall back to a positive default limit, preserve the existing max limit of 100, and fall back to page 1 for invalid or non-positive page values.