get

/api/v1/planetary-hours/current

Get the current planetary hour

Overview

Returns the planetary hour that is currently in effect for the specified location.

Parameters

NameTypeInRequiredDescription
latitudestringqueryYes

Observer latitude in degrees (-90 to 90)

longitudestringqueryYes

Observer longitude in degrees (-180 to 180)

Response

200 — Current planetary hour

hourNumber number required
isDayHour boolean required
ruler string required
Enum:
SaturnJupiterMarsSunVenusMercuryMoon
start string required
startTimestamp string required
end string required
endTimestamp string required
durationMinutes number required

Example Request

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

Example Response

JSON
{
  "hourNumber": 0,
  "isDayHour": true,
  "ruler": "Saturn",
  "start": "",
  "startTimestamp": "",
  "end": "",
  "endTimestamp": "",
  "durationMinutes": 0
}