← Science & Space

ISS Location

GET /space/iss

Get the current real-time position of the International Space Station, including latitude, longitude, and the timestamp of the reading. The ISS orbits Earth every ~90 minutes at about 28,000 km/h. Useful for ISS tracker apps, educational tools showing the station's path over Earth, and notification systems that alert users when the ISS is passing overhead. Data from the ISS tracking API, updated every few seconds.

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/space/iss

Live Response

{
  "data": {
    "latitude": "-51.6117",
    "longitude": "64.8192",
    "timestamp": 1775421491
  },
  "success": true
}