Add the API configuration
Now under the imports we are going to add the API configuration. This is where we will have the API key that we generated earlier and the base url that we will be calling.
import requests
import json
# Your API configuration
API_KEY = "YOUR_API_KEY_HERE" # Replace with your actual key
BASE_URL = "https://api.simpler.grants.gov"
Something not working as expected? Check out common issues & solutions.
Last updated
Was this helpful?