Yacy api call in Python? strange links

can you please tell me why I get strange links when I call the API in python?

it shows up like “yacysearch.json?query=hello”


import requests

import json

entry = input("Enter search:")

api_url1 = f"https://search.simplifiedprivacy.is/yacysearch.json?query={entry}"

response1 = requests.get(api_url1)

round2 = response1.json()

pretty = json.dumps(round2, indent=2)

print(pretty)