Real-time Satellite Tracking
Get the current geographic position of a satellite by its NORAD ID.
GET /api/v1/satellites/:noradId/geoposition
noradId (path parameter, required) - The NORAD catalog ID of the satelliteGET /api/v1/satellites/25544/geoposition
{
"noradId": 25544,
"name": "ISS (ZARYA)",
"latitude": 51.5074,
"longitude": -0.1278,
"epoch": "2024-01-15T10:30:00.000Z"
}
Get a list of satellites that are currently in range of a specific observer location (above 10° elevation).
GET /api/v1/satellites/nearby
latitude (required) - Observer’s latitude in decimal degrees (-90 to 90)longitude (required) - Observer’s longitude in decimal degrees (-180 to 180)mode (optional) - Response mode, defaults to “basic”GET /api/v1/satellites/nearby?latitude=51.5074&longitude=-0.1278&mode=basic
{
"metadata": {
"total": 2,
"mode": "basic"
},
"observer": {
"latitude": 51.5074,
"longitude": -0.1278,
"datetime": "2024-01-15T10:30:00.000Z"
},
"satellites": [
{
"noradId": 25544,
"name": "ISS (ZARYA)",
"labels": ["iss"],
"elevation": 45.2,
"azimuth": 180.5,
"range": 450.8,
"visible": true,
"observerDaytime": false,
"satelliteSunlit": true,
"epoch": "2024-01-15T10:30:00.000Z"
},
{
"noradId": 20580,
"name": "HST",
"labels": ["hubble"],
"elevation": 30.1,
"azimuth": 270.3,
"range": 550.2,
"visible": false,
"observerDaytime": false,
"satelliteSunlit": false,
"epoch": "2024-01-15T10:30:00.000Z"
}
]
}
Health check endpoint to verify API availability and status.
GET /api/v1/service/healthcheck
No parameters required.
GET /api/v1/service/healthcheck
{
"message": "OK"
}
The API uses standard HTTP status codes to indicate success or failure:
200 - Success400 - Bad Request (invalid parameters)404 - Not Found (satellite not found)500 - Internal Server Error{
"message": "Error message description",
"statusCode": 400
}