{
  "api": "personal-api",
  "version": "2026-09-03.1",
  "endpoint": "availability",
  "visibility": "public",
  "updatedAt": "2026-09-03",
  "humanUrl": "https://aaronmakelky.com/tools/personal-api",
  "source": "src/data/personalApi.js",
  "summary": "See when I'm free and book a 30-minute intro.",
  "data": {
    "scope": "30-minute introductory conversations",
    "bookingUrl": "https://cal.com/aaron-makelky/intro",
    "notes": [
      "Use this link to see current availability and book time with Aaron.",
      "The API response does not include Aaron's live calendar."
    ]
  },
  "dataSchema": {
    "type": "object",
    "additionalProperties": false,
    "required": [
      "scope",
      "bookingUrl",
      "notes"
    ],
    "properties": {
      "scope": {
        "type": "string"
      },
      "bookingUrl": {
        "type": "string",
        "format": "uri"
      },
      "notes": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}