get
/api/v1/seasons/current
Get the current season
Overview
Returns the current astronomical season for the specified hemisphere.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
hemisphere | string | query | No | Hemisphere to calculate season for. Defaults to north. Allowed: northsouthDefault: |
Response
200 — Current season information
hemispherestring required- Enum:
northsouth seasonstring required- Enum:
springsummerautumnwinter datestring 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": ""
}