{
  "schemaVersion": "1.0",
  "item": {
    "slug": "acuity-scheduling",
    "name": "Acuity Scheduling",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/acuity-scheduling",
    "canonicalUrl": "https://clawhub.ai/byungkyu/acuity-scheduling",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/acuity-scheduling",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=acuity-scheduling",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/acuity-scheduling"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/acuity-scheduling",
    "agentPageUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent",
    "manifestUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Acuity Scheduling",
        "body": "Access the Acuity Scheduling API with managed OAuth authentication. Manage appointments, calendars, clients, availability, and more."
      },
      {
        "title": "Quick Start",
        "body": "# List appointments\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/acuity-scheduling/{native-api-path}\n\nReplace {native-api-path} with the actual Acuity API endpoint path. The gateway proxies requests to acuityscheduling.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Acuity Scheduling OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=acuity-scheduling&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'acuity-scheduling'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"acuity-scheduling\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Acuity Scheduling connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Account Information",
        "body": "Get Account Info\n\nGET /acuity-scheduling/api/v1/me\n\nReturns account information including timezone, scheduling page URL, and plan details.\n\nResponse:\n\n{\n  \"id\": 12345,\n  \"email\": \"user@example.com\",\n  \"timezone\": \"America/Los_Angeles\",\n  \"name\": \"My Business\",\n  \"schedulingPage\": \"https://app.acuityscheduling.com/schedule.php?owner=12345\",\n  \"plan\": \"Professional\",\n  \"currency\": \"USD\"\n}"
      },
      {
        "title": "Appointments",
        "body": "List Appointments\n\nGET /acuity-scheduling/api/v1/appointments\n\nQuery Parameters:\n\nParameterTypeDescriptionmaxintegerMaximum results (default: 100)minDatedateAppointments on or after this datemaxDatedateAppointments on or before this datecalendarIDintegerFilter by calendarappointmentTypeIDintegerFilter by appointment typecanceledbooleanInclude canceled appointments (default: false)firstNamestringFilter by client first namelastNamestringFilter by client last nameemailstringFilter by client emailexcludeFormsbooleanOmit intake forms for faster responsedirectionstringSort order: ASC or DESC (default: DESC)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10&minDate=2026-02-01')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n[\n  {\n    \"id\": 1630290133,\n    \"firstName\": \"Jane\",\n    \"lastName\": \"McTest\",\n    \"phone\": \"1235550101\",\n    \"email\": \"jane.mctest@example.com\",\n    \"date\": \"February 4, 2026\",\n    \"time\": \"9:30am\",\n    \"endTime\": \"10:20am\",\n    \"datetime\": \"2026-02-04T09:30:00-0800\",\n    \"type\": \"Consultation\",\n    \"appointmentTypeID\": 88791369,\n    \"duration\": \"50\",\n    \"calendar\": \"Chris\",\n    \"calendarID\": 13499175,\n    \"canceled\": false,\n    \"confirmationPage\": \"https://app.acuityscheduling.com/schedule.php?...\"\n  }\n]\n\nGet Appointment\n\nGET /acuity-scheduling/api/v1/appointments/{id}\n\nCreate Appointment\n\nPOST /acuity-scheduling/api/v1/appointments\nContent-Type: application/json\n\n{\n  \"datetime\": \"2026-02-15T09:00\",\n  \"appointmentTypeID\": 123,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@example.com\",\n  \"phone\": \"555-123-4567\",\n  \"timezone\": \"America/New_York\"\n}\n\nRequired Fields:\n\ndatetime - Date and time (parseable by PHP's strtotime)\nappointmentTypeID - Appointment type ID\nfirstName - Client's first name\nlastName - Client's last name\nemail - Client's email\n\nOptional Fields:\n\nphone - Client phone number\ncalendarID - Specific calendar (auto-selected if omitted)\ntimezone - Client's timezone\ncertificate - Package or coupon code\nnotes - Admin notes\naddonIDs - Array of addon IDs\nfields - Array of form field values\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    'datetime': '2026-02-15T09:00',\n    'appointmentTypeID': 123,\n    'firstName': 'John',\n    'lastName': 'Doe',\n    'email': 'john.doe@example.com'\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nUpdate Appointment\n\nPUT /acuity-scheduling/api/v1/appointments/{id}\nContent-Type: application/json\n\n{\n  \"firstName\": \"Jane\",\n  \"lastName\": \"Smith\",\n  \"email\": \"jane.smith@example.com\"\n}\n\nCancel Appointment\n\nPUT /acuity-scheduling/api/v1/appointments/{id}/cancel\n\nReturns the canceled appointment with canceled: true.\n\nReschedule Appointment\n\nPUT /acuity-scheduling/api/v1/appointments/{id}/reschedule\nContent-Type: application/json\n\n{\n  \"datetime\": \"2026-02-20T10:00\"\n}\n\nNote: The new datetime must be an available time slot."
      },
      {
        "title": "Calendars",
        "body": "List Calendars\n\nGET /acuity-scheduling/api/v1/calendars\n\nResponse:\n\n[\n  {\n    \"id\": 13499175,\n    \"name\": \"Chris\",\n    \"email\": \"\",\n    \"replyTo\": \"chris@example.com\",\n    \"description\": \"\",\n    \"location\": \"\",\n    \"timezone\": \"America/Los_Angeles\"\n  }\n]"
      },
      {
        "title": "Appointment Types",
        "body": "List Appointment Types\n\nGET /acuity-scheduling/api/v1/appointment-types\n\nQuery Parameters:\n\nincludeDeleted (boolean) - Include deleted types\n\nResponse:\n\n[\n  {\n    \"id\": 88791369,\n    \"name\": \"Consultation\",\n    \"active\": true,\n    \"description\": \"\",\n    \"duration\": 50,\n    \"price\": \"45.00\",\n    \"category\": \"\",\n    \"color\": \"#ED7087\",\n    \"private\": false,\n    \"type\": \"service\",\n    \"calendarIDs\": [13499175],\n    \"schedulingUrl\": \"https://app.acuityscheduling.com/schedule.php?...\"\n  }\n]"
      },
      {
        "title": "Availability",
        "body": "Get Available Dates\n\nGET /acuity-scheduling/api/v1/availability/dates?month=2026-02&appointmentTypeID=123\n\nRequired Parameters:\n\nmonth - Month to check (e.g., \"2026-02\")\nappointmentTypeID - Appointment type ID\n\nOptional Parameters:\n\ncalendarID - Specific calendar\ntimezone - Timezone for results (e.g., \"America/New_York\")\n\nResponse:\n\n[\n  {\"date\": \"2026-02-09\"},\n  {\"date\": \"2026-02-10\"},\n  {\"date\": \"2026-02-11\"}\n]\n\nGet Available Times\n\nGET /acuity-scheduling/api/v1/availability/times?date=2026-02-10&appointmentTypeID=123\n\nRequired Parameters:\n\ndate - Date to check\nappointmentTypeID - Appointment type ID\n\nOptional Parameters:\n\ncalendarID - Specific calendar\ntimezone - Timezone for results\n\nResponse:\n\n[\n  {\"time\": \"2026-02-10T09:00:00-0800\", \"slotsAvailable\": 1},\n  {\"time\": \"2026-02-10T09:50:00-0800\", \"slotsAvailable\": 1},\n  {\"time\": \"2026-02-10T10:40:00-0800\", \"slotsAvailable\": 1}\n]"
      },
      {
        "title": "Clients",
        "body": "List Clients\n\nGET /acuity-scheduling/api/v1/clients\n\nQuery Parameters:\n\nsearch - Filter by first name, last name, or phone\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/clients?search=John')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n[\n  {\n    \"firstName\": \"Jane\",\n    \"lastName\": \"McTest\",\n    \"email\": \"jane.mctest@example.com\",\n    \"phone\": \"(123) 555-0101\",\n    \"notes\": \"\"\n  }\n]\n\nCreate Client\n\nPOST /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john@example.com\",\n  \"phone\": \"555-123-4567\"\n}\n\nUpdate Client\n\nPUT /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.updated@example.com\"\n}\n\nNote: Client update/delete only works for clients with existing appointments.\n\nDelete Client\n\nDELETE /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\"\n}"
      },
      {
        "title": "Blocks",
        "body": "List Blocks\n\nGET /acuity-scheduling/api/v1/blocks\n\nQuery Parameters:\n\nmax - Maximum results (default: 100)\nminDate - Blocks on or after this date\nmaxDate - Blocks on or before this date\ncalendarID - Filter by calendar\n\nGet Block\n\nGET /acuity-scheduling/api/v1/blocks/{id}\n\nCreate Block\n\nPOST /acuity-scheduling/api/v1/blocks\nContent-Type: application/json\n\n{\n  \"start\": \"2026-02-15T12:00\",\n  \"end\": \"2026-02-15T13:00\",\n  \"calendarID\": 1234,\n  \"notes\": \"Lunch break\"\n}\n\nResponse:\n\n{\n  \"id\": 9589304654,\n  \"calendarID\": 13499175,\n  \"start\": \"2026-02-15T12:00:00-0800\",\n  \"end\": \"2026-02-15T13:00:00-0800\",\n  \"notes\": \"Lunch break\",\n  \"description\": \"Sunday, February 15, 2026 12:00pm - 1:00pm\"\n}\n\nDelete Block\n\nDELETE /acuity-scheduling/api/v1/blocks/{id}\n\nReturns 204 No Content on success."
      },
      {
        "title": "Forms",
        "body": "List Forms\n\nGET /acuity-scheduling/api/v1/forms\n\nResponse:\n\n[\n  {\n    \"id\": 123,\n    \"name\": \"Client Intake Form\",\n    \"appointmentTypeIDs\": [456, 789],\n    \"fields\": [\n      {\n        \"id\": 1,\n        \"name\": \"How did you hear about us?\",\n        \"type\": \"dropdown\",\n        \"options\": [\"Google\", \"Friend\", \"Social Media\"],\n        \"required\": true\n      }\n    ]\n  }\n]"
      },
      {
        "title": "Labels",
        "body": "List Labels\n\nGET /acuity-scheduling/api/v1/labels\n\nResponse:\n\n[\n  {\"id\": 23116714, \"name\": \"Checked In\", \"color\": \"green\"},\n  {\"id\": 23116715, \"name\": \"Completed\", \"color\": \"pink\"},\n  {\"id\": 23116713, \"name\": \"Confirmed\", \"color\": \"yellow\"}\n]"
      },
      {
        "title": "Pagination",
        "body": "Acuity Scheduling uses the max parameter to limit results. Use minDate and maxDate to paginate through date ranges:\n\n# First page\nGET /acuity-scheduling/api/v1/appointments?max=100&minDate=2026-01-01&maxDate=2026-01-31\n\n# Next page\nGET /acuity-scheduling/api/v1/appointments?max=100&minDate=2026-02-01&maxDate=2026-02-28"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst appointments = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/acuity-scheduling/api/v1/appointments',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'max': 10}\n)\nappointments = response.json()"
      },
      {
        "title": "Notes",
        "body": "Datetime values must be parseable by PHP's strtotime() function\nTimezones use IANA format (e.g., \"America/New_York\", \"America/Los_Angeles\")\nClient update/delete requires clients to have existing appointments\nRescheduling requires the new datetime to be an available time slot\nUse excludeForms=true for faster appointment list responses\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Invalid request (e.g., time not available, client not found)401Invalid or missing Maton API key404Resource not found429Rate limited4xx/5xxPassthrough error from Acuity API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with acuity-scheduling. For example:\n\nCorrect: https://gateway.maton.ai/acuity-scheduling/api/v1/appointments\nIncorrect: https://gateway.maton.ai/api/v1/appointments"
      },
      {
        "title": "Resources",
        "body": "Acuity Scheduling API Quick Start\nAppointments API\nAvailability API\nCalendars API\nClients API\nOAuth2 Documentation\nMaton Community\nMaton Support"
      }
    ],
    "body": "Acuity Scheduling\n\nAccess the Acuity Scheduling API with managed OAuth authentication. Manage appointments, calendars, clients, availability, and more.\n\nQuick Start\n# List appointments\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/acuity-scheduling/{native-api-path}\n\n\nReplace {native-api-path} with the actual Acuity API endpoint path. The gateway proxies requests to acuityscheduling.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Acuity Scheduling OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=acuity-scheduling&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'acuity-scheduling'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"acuity-scheduling\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Acuity Scheduling connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nAccount Information\nGet Account Info\nGET /acuity-scheduling/api/v1/me\n\n\nReturns account information including timezone, scheduling page URL, and plan details.\n\nResponse:\n\n{\n  \"id\": 12345,\n  \"email\": \"user@example.com\",\n  \"timezone\": \"America/Los_Angeles\",\n  \"name\": \"My Business\",\n  \"schedulingPage\": \"https://app.acuityscheduling.com/schedule.php?owner=12345\",\n  \"plan\": \"Professional\",\n  \"currency\": \"USD\"\n}\n\nAppointments\nList Appointments\nGET /acuity-scheduling/api/v1/appointments\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\nmax\tinteger\tMaximum results (default: 100)\nminDate\tdate\tAppointments on or after this date\nmaxDate\tdate\tAppointments on or before this date\ncalendarID\tinteger\tFilter by calendar\nappointmentTypeID\tinteger\tFilter by appointment type\ncanceled\tboolean\tInclude canceled appointments (default: false)\nfirstName\tstring\tFilter by client first name\nlastName\tstring\tFilter by client last name\nemail\tstring\tFilter by client email\nexcludeForms\tboolean\tOmit intake forms for faster response\ndirection\tstring\tSort order: ASC or DESC (default: DESC)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10&minDate=2026-02-01')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n[\n  {\n    \"id\": 1630290133,\n    \"firstName\": \"Jane\",\n    \"lastName\": \"McTest\",\n    \"phone\": \"1235550101\",\n    \"email\": \"jane.mctest@example.com\",\n    \"date\": \"February 4, 2026\",\n    \"time\": \"9:30am\",\n    \"endTime\": \"10:20am\",\n    \"datetime\": \"2026-02-04T09:30:00-0800\",\n    \"type\": \"Consultation\",\n    \"appointmentTypeID\": 88791369,\n    \"duration\": \"50\",\n    \"calendar\": \"Chris\",\n    \"calendarID\": 13499175,\n    \"canceled\": false,\n    \"confirmationPage\": \"https://app.acuityscheduling.com/schedule.php?...\"\n  }\n]\n\nGet Appointment\nGET /acuity-scheduling/api/v1/appointments/{id}\n\nCreate Appointment\nPOST /acuity-scheduling/api/v1/appointments\nContent-Type: application/json\n\n{\n  \"datetime\": \"2026-02-15T09:00\",\n  \"appointmentTypeID\": 123,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.doe@example.com\",\n  \"phone\": \"555-123-4567\",\n  \"timezone\": \"America/New_York\"\n}\n\n\nRequired Fields:\n\ndatetime - Date and time (parseable by PHP's strtotime)\nappointmentTypeID - Appointment type ID\nfirstName - Client's first name\nlastName - Client's last name\nemail - Client's email\n\nOptional Fields:\n\nphone - Client phone number\ncalendarID - Specific calendar (auto-selected if omitted)\ntimezone - Client's timezone\ncertificate - Package or coupon code\nnotes - Admin notes\naddonIDs - Array of addon IDs\nfields - Array of form field values\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    'datetime': '2026-02-15T09:00',\n    'appointmentTypeID': 123,\n    'firstName': 'John',\n    'lastName': 'Doe',\n    'email': 'john.doe@example.com'\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/appointments', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nUpdate Appointment\nPUT /acuity-scheduling/api/v1/appointments/{id}\nContent-Type: application/json\n\n{\n  \"firstName\": \"Jane\",\n  \"lastName\": \"Smith\",\n  \"email\": \"jane.smith@example.com\"\n}\n\nCancel Appointment\nPUT /acuity-scheduling/api/v1/appointments/{id}/cancel\n\n\nReturns the canceled appointment with canceled: true.\n\nReschedule Appointment\nPUT /acuity-scheduling/api/v1/appointments/{id}/reschedule\nContent-Type: application/json\n\n{\n  \"datetime\": \"2026-02-20T10:00\"\n}\n\n\nNote: The new datetime must be an available time slot.\n\nCalendars\nList Calendars\nGET /acuity-scheduling/api/v1/calendars\n\n\nResponse:\n\n[\n  {\n    \"id\": 13499175,\n    \"name\": \"Chris\",\n    \"email\": \"\",\n    \"replyTo\": \"chris@example.com\",\n    \"description\": \"\",\n    \"location\": \"\",\n    \"timezone\": \"America/Los_Angeles\"\n  }\n]\n\nAppointment Types\nList Appointment Types\nGET /acuity-scheduling/api/v1/appointment-types\n\n\nQuery Parameters:\n\nincludeDeleted (boolean) - Include deleted types\n\nResponse:\n\n[\n  {\n    \"id\": 88791369,\n    \"name\": \"Consultation\",\n    \"active\": true,\n    \"description\": \"\",\n    \"duration\": 50,\n    \"price\": \"45.00\",\n    \"category\": \"\",\n    \"color\": \"#ED7087\",\n    \"private\": false,\n    \"type\": \"service\",\n    \"calendarIDs\": [13499175],\n    \"schedulingUrl\": \"https://app.acuityscheduling.com/schedule.php?...\"\n  }\n]\n\nAvailability\nGet Available Dates\nGET /acuity-scheduling/api/v1/availability/dates?month=2026-02&appointmentTypeID=123\n\n\nRequired Parameters:\n\nmonth - Month to check (e.g., \"2026-02\")\nappointmentTypeID - Appointment type ID\n\nOptional Parameters:\n\ncalendarID - Specific calendar\ntimezone - Timezone for results (e.g., \"America/New_York\")\n\nResponse:\n\n[\n  {\"date\": \"2026-02-09\"},\n  {\"date\": \"2026-02-10\"},\n  {\"date\": \"2026-02-11\"}\n]\n\nGet Available Times\nGET /acuity-scheduling/api/v1/availability/times?date=2026-02-10&appointmentTypeID=123\n\n\nRequired Parameters:\n\ndate - Date to check\nappointmentTypeID - Appointment type ID\n\nOptional Parameters:\n\ncalendarID - Specific calendar\ntimezone - Timezone for results\n\nResponse:\n\n[\n  {\"time\": \"2026-02-10T09:00:00-0800\", \"slotsAvailable\": 1},\n  {\"time\": \"2026-02-10T09:50:00-0800\", \"slotsAvailable\": 1},\n  {\"time\": \"2026-02-10T10:40:00-0800\", \"slotsAvailable\": 1}\n]\n\nClients\nList Clients\nGET /acuity-scheduling/api/v1/clients\n\n\nQuery Parameters:\n\nsearch - Filter by first name, last name, or phone\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/acuity-scheduling/api/v1/clients?search=John')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n[\n  {\n    \"firstName\": \"Jane\",\n    \"lastName\": \"McTest\",\n    \"email\": \"jane.mctest@example.com\",\n    \"phone\": \"(123) 555-0101\",\n    \"notes\": \"\"\n  }\n]\n\nCreate Client\nPOST /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john@example.com\",\n  \"phone\": \"555-123-4567\"\n}\n\nUpdate Client\nPUT /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john.updated@example.com\"\n}\n\n\nNote: Client update/delete only works for clients with existing appointments.\n\nDelete Client\nDELETE /acuity-scheduling/api/v1/clients\nContent-Type: application/json\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\"\n}\n\nBlocks\nList Blocks\nGET /acuity-scheduling/api/v1/blocks\n\n\nQuery Parameters:\n\nmax - Maximum results (default: 100)\nminDate - Blocks on or after this date\nmaxDate - Blocks on or before this date\ncalendarID - Filter by calendar\nGet Block\nGET /acuity-scheduling/api/v1/blocks/{id}\n\nCreate Block\nPOST /acuity-scheduling/api/v1/blocks\nContent-Type: application/json\n\n{\n  \"start\": \"2026-02-15T12:00\",\n  \"end\": \"2026-02-15T13:00\",\n  \"calendarID\": 1234,\n  \"notes\": \"Lunch break\"\n}\n\n\nResponse:\n\n{\n  \"id\": 9589304654,\n  \"calendarID\": 13499175,\n  \"start\": \"2026-02-15T12:00:00-0800\",\n  \"end\": \"2026-02-15T13:00:00-0800\",\n  \"notes\": \"Lunch break\",\n  \"description\": \"Sunday, February 15, 2026 12:00pm - 1:00pm\"\n}\n\nDelete Block\nDELETE /acuity-scheduling/api/v1/blocks/{id}\n\n\nReturns 204 No Content on success.\n\nForms\nList Forms\nGET /acuity-scheduling/api/v1/forms\n\n\nResponse:\n\n[\n  {\n    \"id\": 123,\n    \"name\": \"Client Intake Form\",\n    \"appointmentTypeIDs\": [456, 789],\n    \"fields\": [\n      {\n        \"id\": 1,\n        \"name\": \"How did you hear about us?\",\n        \"type\": \"dropdown\",\n        \"options\": [\"Google\", \"Friend\", \"Social Media\"],\n        \"required\": true\n      }\n    ]\n  }\n]\n\nLabels\nList Labels\nGET /acuity-scheduling/api/v1/labels\n\n\nResponse:\n\n[\n  {\"id\": 23116714, \"name\": \"Checked In\", \"color\": \"green\"},\n  {\"id\": 23116715, \"name\": \"Completed\", \"color\": \"pink\"},\n  {\"id\": 23116713, \"name\": \"Confirmed\", \"color\": \"yellow\"}\n]\n\nPagination\n\nAcuity Scheduling uses the max parameter to limit results. Use minDate and maxDate to paginate through date ranges:\n\n# First page\nGET /acuity-scheduling/api/v1/appointments?max=100&minDate=2026-01-01&maxDate=2026-01-31\n\n# Next page\nGET /acuity-scheduling/api/v1/appointments?max=100&minDate=2026-02-01&maxDate=2026-02-28\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/acuity-scheduling/api/v1/appointments?max=10',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst appointments = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/acuity-scheduling/api/v1/appointments',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'max': 10}\n)\nappointments = response.json()\n\nNotes\nDatetime values must be parseable by PHP's strtotime() function\nTimezones use IANA format (e.g., \"America/New_York\", \"America/Los_Angeles\")\nClient update/delete requires clients to have existing appointments\nRescheduling requires the new datetime to be an available time slot\nUse excludeForms=true for faster appointment list responses\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tInvalid request (e.g., time not available, client not found)\n401\tInvalid or missing Maton API key\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Acuity API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with acuity-scheduling. For example:\nCorrect: https://gateway.maton.ai/acuity-scheduling/api/v1/appointments\nIncorrect: https://gateway.maton.ai/api/v1/appointments\nResources\nAcuity Scheduling API Quick Start\nAppointments API\nAvailability API\nCalendars API\nClients API\nOAuth2 Documentation\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/acuity-scheduling",
    "publisherUrl": "https://clawhub.ai/byungkyu/acuity-scheduling",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/acuity-scheduling",
    "downloadUrl": "https://openagent3.xyz/downloads/acuity-scheduling",
    "agentUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent",
    "manifestUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/acuity-scheduling/agent.md"
  }
}