← Norway

MET Sunrise/Sunset

GET /norway/met/sunrise

Sunrise, sunset and solar-noon times for any lat/lon on a given date.

Parameters

lat required

Latitude

lon required

Longitude

date required

Date YYYY-MM-DD

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/norway/met/sunrise?lat=59.91&lon=10.75&date=2026-05-15"

Live Response

{
  "data": {
    "copyright": "MET Norway",
    "geometry": {
      "coordinates": [
        10.75,
        59.91
      ],
      "type": "Point"
    },
    "licenseURL": "https://api.met.no/license_data.html",
    "properties": {
      "body": "Sun",
      "solarmidnight": {
        "disc_centre_elevation": -11.28,
        "time": "2026-05-15T00:13+01:00",
        "visible": false
      },
      "solarnoon": {
        "disc_centre_elevation": 49.02,
        "time": "2026-05-15T12:13+01:00",
        "visible": true
      },
      "sunrise": {
        "azimuth": 47.99,
        "time": "2026-05-15T03:40+01:00"
      },
      "sunset": {
        "azimuth": 312.45,
        "time": "2026-05-15T20:48+01:00"
      }
    },
    "type": "Feature",
    "when": {
      "interval": [
        "2026-05-14T23:13:00Z",
        "2026-05-15T23:17:00Z"
      ]
    }
  },
  "success": true
}