{
  "slug": "parse-datetime",
  "name": "gizza-ai/parse-datetime",
  "version": "0.1.0",
  "title": "Date/Time Parser — parse any date string into structured parts — gizza.ai",
  "description": "Parse a date or time in almost any format — ISO 8601, RFC 2822, US/European dates — into year, month, day, weekday, ISO week and a canonical ISO 8601 value.",
  "tags": [
    "date parser",
    "datetime parser",
    "parse date",
    "iso 8601",
    "rfc 3339",
    "rfc 2822",
    "date components",
    "weekday from date",
    "day of year",
    "iso week number",
    "timestamp parser"
  ],
  "category": "time",
  "urls": {
    "page": "https://gizza.ai/tools/parse-datetime/",
    "markdown": "https://gizza.ai/tools/parse-datetime/index.md",
    "descriptor": "https://gizza.ai/tools/parse-datetime/tool.json",
    "deep_link_example": "https://gizza.ai/tools/parse-datetime/?input=2024-01-05T14%3A30%3A00%2B02%3A00"
  },
  "cli": "gizza tool parse-datetime \"2024-01-05T14:30:00+02:00\"",
  "tool": {
    "description": "Parse a single date and/or time string in many common formats (ISO 8601 / RFC 3339, RFC 2822 email, US slash, European dotted, year-first, month-name, and bare clock times) and return its structured components as JSON: kind, year, month (+ name), day, weekday, day_of_year, iso_week, hour/minute/second, utc_offset_seconds, and a canonical iso8601 rendering.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "input": {
          "description": "The date and/or time string to parse.",
          "type": "string"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}