TL;DR
The Icelandic APIs project (apis.is) provides a collection of free REST APIs serving data about Iceland. Endpoints cover Icelandic weather forecasts, bus routes in Reykjavík (Strætó), airline schedules, government institution data, geography (municipalities, regions), and more. All APIs return JSON and require no authentication. A perfect resource for building Iceland-focused applications.
Quick start: http://apis.is/weather/climate?stations=1
No API key needed — open Icelandic data!
How to Use This API
1. Weather
Get weather observations from Icelandic meteorological stations:
http://apis.is/weather/climate?stations=1
2. Bus Routes in Reykjavík
Find bus departures from a specific bus stop in the Strætó system:
http://apis.is/bus/realtime?stop=Mjódd
3. Company Information
Look up Icelandic company registration data by ID number:
http://apis.is/company/5712993019
4. JavaScript — Reykjavík Bus Departures
fetch('http://apis.is/bus/realtime?stop=Hlemmur')
.then(r => r.json())
.then(data => {
data.results.forEach(bus => {
console.log(`${bus.route} → ${bus.destination}`);
console.log(` Departure: ${bus.time} (${bus.minutes} min)`);
});
});
5. Python — Icelandic Weather
import requests
weather = requests.get(
'http://apis.is/weather/climate',
params={'stations': '1'}
).json()
for station in weather['results']:
print(f"{station['name']}: {station['temperature']}°C, "
f"{station['wind']} m/s")
http://apis.is/weather/climate?stations=1
Frequently Asked Questions
- What endpoints are available?
- Major endpoints include
/weather,/bus/realtime,/company,/car,/airline,/pension, and/university/programs. Each provides Iceland-specific data from official sources. - Are the bus times real-time?
- Yes — the Strætó bus endpoint provides real-time departure data from the Reykjavík bus system. Use the
stopparameter with the stop name (e.g., Hlemmur, Lækjartorg, Mjódd). - What weather data is available?
- Temperature, wind speed and direction, precipitation, humidity, and atmospheric pressure from Icelandic Meteorological Office stations across the country.
- Can I look up individuals or just companies?
- The company endpoint is for registered Icelandic companies (kennitala). It returns name, address, status, and registration date from the Icelandic Registry of Companies.
- Is there rate limiting?
- apis.is is a community project and free to use. Be respectful with request frequency. For high-volume needs, consider caching responses.
- Are the APIs documented?
- Yes — full documentation is available at docs.apis.is with endpoint descriptions, parameters, and example responses.
API Details
- API URL
http://apis.is/- Documentation
- docs.apis.is
- Category
- Transportation
- Authentication
- Not Required
- Geographic Coverage
- Iceland
What You Can Build
- Reykjavík real-time bus tracker app with departure boards
- Iceland travel assistant combining weather, transport, and company data
- Company lookup tool for Icelandic business verification
- Weather dashboard for Iceland's various climate zones
- Airline schedule comparator for domestic Icelandic flights