Can I run web search for a specific URL?

Hi. Is it possible to run web search across specific 1,2 or 3 urls? I’m dynamically forming those urls from user initial form input to then call web search action. This is what I get:

It appears there was an error when attempting to retrieve information about Lisa Ferraz’s posts. Let me explain the situation based on this new information:

There was an attempt to use a function called google_search to gather information about Lisa Ferraz’s LinkedIn posts from the URL “lisa-ferraz – LinkedIn Top Voices 2025”. However, this attempt resulted in an error.

The error message indicates:

Traceback (most recent call last):
  File "//app/action.py", line 45, in <module>
    response = google_search(query="""https://top-rated.pro/linkedin-influencers/author/lisaferraz""")
TypeError: google_search() got an unexpected keyword argument 'query'

This error suggests that the google_search function is not set up to accept a ‘query’ parameter, which is why the attempt to retrieve information failed.

This is not how the action is configured. It is set up to use keywords from the prompt/conversation to then dynamically create its own query and grab the most relevant results.

You could probably achieve a similar result purely from prompting. In your prompt write something like “Use the google search action to find information about Lisa Ferraz top LinkedIn Voice from top-rated.pro”.

If that URL is google-indexed and discoverable via search, it should find it. However, if that URL exists but isn’t easy to find through a google search, then you won’t have much luck. I suspect this is likely your issue. When I manually google search “Linkedin Influencer top-rated.pro” none of the results are the top-rated.pro website you linked.

1 Like

@metamediary you could also create your own action with the google search API or similar (e.g. serpAPI)

1 Like

Thanks @ab2308! in this case I can search specific page even if it’s not google-indexed?