Random User Generator API: This is a great tool for generating random user data. You can use it to generate any number of random users and associated data, and you can also specify gender, nationality, and many other filters that can be really helpful when testing apps or, in this case, APIs.
<aside> 💡 The URL to call the RU data API is https://randomuser.me/api
</aside>
import requests
requests.get("<https://randomuser.me/api>")
#<Response [200]>
Randomuser.me/api is a baseurl aka the API URL
TheDogAPI
import requests
response = requests.get("<https://api.thedogapi.com/>")
response.text