← Combinaciones de inteligencia

Inteligencia de ubicación

GET /mashup/location

Comprehensive location profile: combines weather, calidad del aire, elevation, contaminación lumínica, nearby earthquakes, and timezone into a single location report.

Parametros

lat requerido

Latitude

lon requerido

Longitude

Ejemplos de solicitudes

Uso basico
curl "https://nordapi.ee/api/v1/mashup/location?lat=59.4&lon=24.7"

Respuesta en vivo

{
  "air_quality": {
    "european_aqi": 36,
    "pm10": 3.6,
    "pm2_5": 1.9,
    "us_aqi": 41
  },
  "light_pollution": {
    "aurora_suitability": "fair",
    "bortle_class": 6
  },
  "location": {
    "latitude": 59.4,
    "longitude": 24.7
  },
  "marine": {
    "current": {
      "interval": 900,
      "swell_wave_direction": 0,
      "swell_wave_height": 0.08,
      "swell_wave_period": 3.3,
      "time": "2026-04-09T12:45",
      "wave_direction": 50,
      "wave_height": 0.66,
      "wave_period": 3.45,
      "wind_wave_height": 0.64
    },
    "current_units": {
      "interval": "seconds",
      "swell_wave_direction": "°",
      "swell_wave_height": "m",
      "swell_wave_period": "s",
      "time": "iso8601",
      "wave_direction": "°",
      "wave_height": "m",
      "wave_period": "s",
      "wind_wave_height": "m"
    },
    "elevation": 30.0,
    "generationtime_ms": 0.1245737075805664,
    "latitude": 59.541664,
    "longitude": 24.708344,
    "timezone": "Europe/Tallinn",
    "timezone_abbreviation": "GMT+3",
    "utc_offset_seconds": 10800
  },
  "scores": {
    "air_quality": 9.0,
    "dark_sky": 5.0,
    "seismic_safety": 10.0,
    "weather_comfort": 3.0
  },
  "seismic": {
    "earthquakes_within_300km": 0,
    "recent": []
  },
  "success": true,
  "sun": {
    "astronomical_twilight_begin": "2026-04-09T00:34:13+00:00",
    "astronomical_twilight_end": "2026-04-09T20:11:22+00:00",
    "civil_twilight_begin": "2026-04-09T02:39:43+00:00",
    "civil_twilight_end": "2026-04-09T18:05:51+00:00",
    "day_length": 50592,
    "nautical_twilight_begin": "2026-04-09T01:43:44+00:00",
    "nautical_twilight_end": "2026-04-09T19:01:50+00:00",
    "solar_noon": "2026-04-09T10:22:47+00:00",
    "sunrise": "2026-04-09T03:21:11+00:00",
    "sunset": "2026-04-09T17:24:23+00:00"
  },
  "timezone": {
    "date": "04/09/2026",
    "datetime": "2026-04-09T12:45:44.7726778",
    "day_of_week": "Thursday",
    "time": "12:45",
    "timezone": "Europe/Tallinn",
    "utc_offset": null
  },
  "weather": {
    "current": {
      "cloud_cover": 19,
      "humidity": 59,
      "temperature_c": 2.3,
      "wind_speed_kmh": 25.2
    },
    "forecast_3day": {
      "daily": {
        "precipitation_sum": [
          0.0,
          0.0,
          0.0
        ],
        "temperature_2m_max": [
          4.2,
          6.3,
          8.3
        ],
        "temperature_2m_min": [
          -0.4,
          0.0,
          0.7
        ],
        "time": [
          "2026-04-09",
          "2026-04-10",
          "2026-04-11"
        ],
        "weather_code": [
          1,
          3,
          3
        ],
        "wind_speed_10m_max": [
          25.6,
          23.0,
          18.4
        ]
      },
      "daily_units": {
        "precipitation_sum": "mm",
        "temperature_2m_max": "°C",
        "temperature_2m_min": "°C",
        "time": "iso8601",
        "weather_code": "wmo code",
        "wind_speed_10m_max": "km/h"
      },
      "elevation": 30.0,
      "generationtime_ms": 1.1386871337890625,
      "latitude": 59.399193,
      "longitude": 24.691467,
      "timezone": "Europe/Tallinn",
      "timezone_abbreviation": "GMT+3",
      "utc_offset_seconds": 10800
    }
  }
}