ToolAssay

Generate a calendar invite (.ics file) from event details

Generate a calendar invite (.ics file) from event details. Returns a valid RFC 5545 iCalendar VEVENT with title, start and end time, timezone, location, and attendees that can be emailed or imported into Google Calendar, Outlook, or Apple Calendar. Use when an agent needs to schedule a meeting or send a calendar invitation.

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.002listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://api.kakerapetit.dev/v1/calendar/ics

CategoryEverything else
Provider hostapi.kakerapetit.dev
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days4 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "attendees": [
      "alice@example.com",
      "bob@example.com"
    ],
    "description": "Agenda: roadmap review and Q3 goals.",
    "end": "2026-07-15T10:45:00-07:00",
    "location": "https://meet.example.com/qps",
    "start": "2026-07-15T10:00:00-07:00",
    "timezone": "America/Los_Angeles",
    "title": "Quarterly planning sync"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "attendees": {
              "description": "Optional attendee email addresses (ATTENDEE lines).",
              "items": {
                "format": "email",
                "type": "string"
              },
              "type": "array"
            },
            "description": {
              "description": "Optional event description body.",
              "type": "string"
            },
            "end": {
              "description": "Event end as ISO 8601 datetime. Must be after start.",
              "format": "date-time",
              "type": "string"
            },
            "location": {
              "description": "Optional location or meeting URL.",
              "type": "string"
            },
            "start": {
              "description": "Event start as ISO 8601 datetime, e.g. 2026-07-15T10:00:00-07:00.",
              "format": "date-time",
              "type": "string"
            },
            "timezone": {
              "description": "Optional IANA timezone (e.g. America/Los_Angeles) used when start/end have no UTC offset.",
              "type": "string"
            },
            "title": {
              "description": "Event title (SUMMARY).",
              "type": "string"
            }
          },
          "required": [
            "title",
            "start",
            "end"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON