# Kilometers / km/h ISS & Satellite Live Position

**Use case:** 

Extract ISS & Satellite Live Position data filtered by Kilometers / km/h. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "satelliteIds": [
    "25544"
  ],
  "units": "kilometers",
  "snapshotsPerSatellite": 1,
  "delayBetweenChecksMs": 5000,
  "maxItems": 10
}
```

## Output

```json
{
  "satelliteId": {
    "label": "NORAD ID",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "timestampUtc": {
    "label": "Position Time (UTC)",
    "format": "date"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "altitude": {
    "label": "Altitude",
    "format": "number"
  },
  "velocity": {
    "label": "Velocity",
    "format": "number"
  },
  "visibility": {
    "label": "Visibility",
    "format": "text"
  },
  "footprint": {
    "label": "Footprint",
    "format": "number"
  },
  "daynum": {
    "label": "Julian Day",
    "format": "number"
  },
  "solarLatitude": {
    "label": "Solar Latitude",
    "format": "number"
  },
  "solarLongitude": {
    "label": "Solar Longitude",
    "format": "number"
  },
  "units": {
    "label": "Units",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [ISS & Satellite Live Position Scraper](https://apify.com/parseforge/iss-current-location-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/iss-current-location-scraper) to learn more, explore other use cases, and run it yourself.