get_current_time
Get the current date and time in a given IANA timezone (e.g. 'Europe/Madrid', 'America/New_York', 'Asia/Tokyo'). Defaults to UTC. Use this whenever you need to know 'now' — you cannot know it otherwise.
Parameters1
| timezone | string | optional | IANA timezone name. Defaults to 'UTC'. |
Raw schema
{
"type": "object",
"properties": {
"timezone": {
"type": "string",
"description": "IANA timezone name. Defaults to 'UTC'."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}