Basically what the title says, but using a basic example:
Let’s say I want to search for something on Google, how would I achieve this but from Godot without having to give any kind of input other than the word I want to search for?
Google is just an example, I want to search for something on another website.
You can use a search API. I personally haven’t used it but there are alot of search apis available like brave search api and google custom search.
you can search for internet search api in your browser to know more.
I ended up using someone’s advice on reddit to change the search query url from godot and make a request with the HTTPRequest node to the website with the new url that includes what I want to search for.