v3 Authentication 🗝

Understand how to authenticate using your unique API key

The Authentication is done via the x-api-token HTTP Header.

For example, if your API key is your_key_1

import requests


url = 'https://v3-api.newscatcherapi.com/api/search?'

params = {'q': 'Silicon Valley '}

headers = {'x-api-token': 'your_key_1'}

response = requests.get(url, params=params, headers=headers)

Last updated