I've seen some users struggling / searching for free APIs, so I'm going to list out some free(mium) APIs I found. This topic is made wiki so eveybody can expand the list.
Animals
Astronomy
https://api.spacexdata.com/v2/launches
https://api.nasa.gov/ (recommended)
https://www.torsten-hoffmann.de/apis/suncalcmooncalc/link_en.html
[@nishyanthkumar] 7Timer! - numerical weather forecast for anywhere over the world
COVID-19
https://covidtracking.com/data/api (this only allows you to see data before March 7, 2021)
https://www.who.int/data/gho/info/athena-api
https://covid19api.com (I haven't used this one yet)
Coronavirus COVID19 API (from postman.com)
Grammar
LanguageTool API Documentation (dnaber) | RapidAPI (from RapidAPI)
Spelling Corrector Extension 📝 (@Yash_Sehgal22’s self made API extension)
IP Address
Inaccurate:
IP Tracker Extension Free Update v2 - Extensions - Kodular Community (An IP Address extension)
http://ip-api.com/json (this link works just when you click on it, and it returns in JSON format)
Sport
https://www.googleadservices.com/pagead/aclk?sa=L&ai=DChcSEwjh-PPAy7r0AhVVdmAKHRlQAKMYABACGgJ0bQ&ae=2&ohost=www.google.com&cid=CAESQeD2MX2Z7sbqEx3lTW09I-ztA2HQWyc_ltvS47hP5Xu31QdGe883iV2lLGd4pgu6aFSTBLM0pOKIUUvmTxqBLZJw&sig=AOD64_25PlF0m_mbWTm__RAM7qlGjk6o7A&q&adurl&ved=2ahUKEwjUz-zAy7r0AhXBJaYKHWlLAZ4Q0Qx6BAgDEAE (@gordonlu310)
Decathlon Developers (@gordonlu310)
Weather
[@HEART12] Weather API - OpenWeatherMap
[@gordonlu310] API - MetaWeather
7Timer! - numerical weather forecast for anywhere over the world (doc language set to English)
Weather Mate ☁ [free] (@Yash_Sehgal22's self made weather API extension)
AerisWeather API Documentation (aerisweather-aerisweather) | RapidAPI (from RapidAPI)
[@cafedev] Home page | Open-Meteo.com
Anything
[@HEART12] [HOWTO] Get Google's Search Results Without Extension!
[@Aquib_Khan] https://any-api.com/
GitHub - public-api-lists/public-api-lists: A collective list of free APIs for use in software and web development 🚀 (Clone of https://github.com/public-apis/public-apis) (GitHub source, thanks to @Peter )
(TIK TOK API, @HAM_APK ) TikTok for Developers
[@Taifun] https://www.programmableweb.com/
[@AyProductions] Free API - Huge List of Public APIs For Testing [No Key] - Apipheny
How do I deal with URL get requests?
Check out the company's documentation first. See if it requires an API key or it needs special parameters.
What is a parameter?
A parameter is some data you add to a Web URL get request. Some parameters are optional, but some are required. The first parameter is joined by '?' and the rest is joined by '&'. Of course, some API get requests do not need APIs, so...
For example, in weatherapi.com, if you want to get the current weather JSON data from Hong Kong, you have to get an API key first. If your API key is AICODE, then your URL is (referenced from the documentation):
https://api.weatherapi.com/v1/current.json?key=AICODE&q=Hong Kong/
After your URL is set, you need to analyze this JSON (think about it - is it a list of dictionaries, dictionary of dictionaries, or others?). You can use a Web component to both turn JSON to lists / dictionaries and getting a get request.
Links that might help you
How to implement any API in my app - Discuss - Kodular Community (Kodular community link)
How To Read a JSON API Data in Kodular - getting Values from JSON - Appybuilder - Kodular - YouTube (YouTube video)