Need help with News API apitube

I’ve recently started using the new News API scraper, apitube. I haven’t fully figured it out yet. I’m trying to set up the retrieval of the real time crude news (I’ve managed to do this part, check it out below). However, I also need to collect archived news about natural gas and metals, and I’m stuck here. Has anyone worked with archived news from apitube?

import requests

url = “https://api.apitube.io/v1/news/everything

querystring = {
“category.name”: “Oil and gas - downstream activities”,
“language”: “en”,
“api_key”: “myKEY”
}
response = requests.request(“GET”, url, params=querystring)

print(response.text)