Existing code:
import requests
def get_hacker_news_stories_by_search_term(search_term: str):
"""
Get the stories from Hacker News mentioning the search term.
"""
Suggested code block:
url = 'https://hacker-news.firebaseio.com/v0/search.json?q={}'.format(search_term)
response = requests.get(url)
return response.json()