Generate a calendar invite (
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.
2000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-14
updated
Provider
api.kakerapetit.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3a43FdF92B1596B22DDF719d5b528c537Da4237d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"attendees": [
"[email protected]",
"[email protected]"
],
"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"
},
"output": {
"example": {
"ics": "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//x402-seller-api//calendar-ics//EN\r\nBEGIN:VEVENT\r\nUID:5f3a...@x402\r\nDTSTAMP:20260708T000000Z\r\nDTSTART:20260715T170000Z\r\nDTEND:20260715T174500Z\r\nSUMMARY:Quarterly planning sync\r\nEND:VEVENT\r\nEND:VCALENDAR\r\n",
"uid": "5f3a2c9e-1b7d-4e42-9c39-8d2f4a61e0aa@x402"
},
"type": "json"
}
},
"schema": {
"$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"
}
}
}Use it
curl
curl "https://api.kakerapetit.dev/v1/calendar/ics" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.kakerapetit.dev/v1/calendar/ics");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.kakerapetit.dev/v1/calendar/ics")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3134.json, and this resource appears in /discovery/resources and /discovery/search.