I tried to use this code to search in entire Quran, but it is too slow to search in all of it.. so is there is a way from you api to search directly in entire Quran?
word = "يسومونكم"
for surah_number in range(1,115):
url = f"https://api.alquran.cloud/v1/search/{word}/{surah_number}/quran-simple-clean"
response = get(url)
if response.status_code == 200:
response_json = response.json()
print(response_json)