Limited result set with API Search

Hey Tavily team. I’m looking to search for latest news based on specific domains and timeframe but I am consistently seeing 5 results when I can manually verify that there are more articles that would be part of the result. Similarly I am finding the results are not as comprehensive as I am hoping for them to be. Can you please suggest ways to get in depth search results for news articles and their full content?

To install: pip install tavily-python

from tavily import TavilyClient
client = TavilyClient(“key”)
response = client.search(
query=“query”,
topic=“news”,
search_depth=“advanced”,
max_results=50,
time_range=“week”,
include_raw_content=“markdown”,
include_domains=[“list,of,local,news,sites”]
)
print(response)