Query parameter for rest API stopped working

I use python but prior to this week, I could send get requests with query parameters. Using filing-history as an example:

/company/{}/filing-history?category=accounts&items_per_page={}

However, now all the query parameters are no longer considered.

response = requests.get('https://api.company-information.service.gov.uk//company/07477274/filing-history?category=accounts&items_per_page=100'

response.url #https://api.company-information.service.gov.uk/company/07477274/filing-history

and

response.json()['items_per_page'] # this is 25 not 100

I mainly use this to grab the correct category of document but I can’t do that anymore.

sorry, this is a typo. I had double slash after gov.uk. Stupid mistake on my end.