These are the recources I used

Find and use an API as part of your project. An API and a little coding logic will be a big step toward getting meaningful data for a project. There are many API providers, find one that might work for your project to complete this hack. When picking an API you are looking for something that will work with either JavaScript Fetch or Python Request. Here are some samples, these are not qualified in any way.

These are the APIs I thought would be great for my group project, I also tetsed them out!

My API example 1

This is an API I thought would be great for my group project

import requests

url = "https://translated-mymemory---translation-memory.p.rapidapi.com/createkey"

headers = {
	"X-RapidAPI-Key": "2d79bbde22mshed34d34c65d8472p1365cejsn7594c6e54840",
	"X-RapidAPI-Host": "translated-mymemory---translation-memory.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers)

print(response.text)
{"key":"949fd6aa438016b675a0","error":"","code":200,"id":"MyMemory_dbbaeba70b342c20334a","pass":"b77b80b2f9"}

My API example number 2

This is an API related to wordle

import requests

url = "https://wordle-answers-solutions.p.rapidapi.com/today"

headers = {
	"X-RapidAPI-Key": "2d79bbde22mshed34d34c65d8472p1365cejsn7594c6e54840",
	"X-RapidAPI-Host": "wordle-answers-solutions.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers)

print(response.text)
{"today":"VIGOR"}

My API number 3: Random Words with Pronunciation API Documentation

import requests

url = "https://random-words-with-pronunciation.p.rapidapi.com/word/dutch"

headers = {
	"X-RapidAPI-Key": "2d79bbde22mshed34d34c65d8472p1365cejsn7594c6e54840",
	"X-RapidAPI-Host": "random-words-with-pronunciation.p.rapidapi.com"
}

response = requests.request("GET", url, headers=headers)

print(response.text)
[
  {
    "word": "Dr",
    "definition": "Dr",
    "pronunciation": "Tr"
  }
]