Free APIs (no key needed)
The following APIs work through the apitree proxy without any API key. They are verified live and cached for performance.
Live Free APIs
- • open-meteo-forecast — Weather forecast (temperature, wind, precip).
?latitude=37.5&longitude=127¤t=temperature_2m - • rest-countries — Country info.
/name/korea - • ip-api-geo — IP geolocation.
/8.8.8.8 - • coingecko-public — Crypto prices.
/simple/price?ids=bitcoin&vs_currencies=usd - • hacker-news — Top stories.
/topstories.json - • sunrise-sunset — Sun times.
/json?lat=37.5&lng=127 - • iss-location — ISS position.
/iss-now.json
Example
curl "https://apitree.ai/api/v1/proxy/open-meteo-forecast?latitude=37.5665&longitude=126.978¤t=temperature_2m" \
-H "Authorization: Bearer YOUR_TOKEN"
# Response:
# { "data": { "current": { "temperature_2m": 18.2 } }, "meta": { "cached": false, "latency_ms": 234 } }