get

/api/v1/seasons/current

Get the current season

Overview

Returns the current astronomical season for the specified hemisphere.

Parameters

NameTypeInRequiredDescription
hemispherestringqueryNo

Hemisphere to calculate season for. Defaults to north.

Allowed:
northsouth

Default: north

Response

200 — Current season information

hemisphere string required
Enum:
northsouth
season string required
Enum:
springsummerautumnwinter
date string required

Example Request

cURL
curl "https://api.almuten.io/api/v1/seasons/current" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

JSON
{
  "hemisphere": "north",
  "season": "spring",
  "date": ""
}