{
  "schemaVersion": "1.0",
  "item": {
    "slug": "eventbrite",
    "name": "Eventbrite",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/eventbrite",
    "canonicalUrl": "https://clawhub.ai/byungkyu/eventbrite",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/eventbrite",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eventbrite",
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/eventbrite"
    },
    "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/eventbrite",
    "agentPageUrl": "https://openagent3.xyz/skills/eventbrite/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eventbrite/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eventbrite/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": "Eventbrite",
        "body": "Access the Eventbrite API with managed OAuth authentication. Manage events, venues, ticket classes, orders, attendees, and more."
      },
      {
        "title": "Quick Start",
        "body": "# Get current user\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/eventbrite/v3/users/me/')\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/eventbrite/{native-api-path}\n\nReplace {native-api-path} with the actual Eventbrite API endpoint path. The gateway proxies requests to www.eventbriteapi.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 Eventbrite 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=eventbrite&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': 'eventbrite'}).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\": \"a2dd9063-64b4-4fe2-b4c5-8dd711648244\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-07T09:11:20.516013Z\",\n    \"last_updated_time\": \"2026-02-07T09:14:35.273822Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"eventbrite\",\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 Eventbrite 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/eventbrite/v3/users/me/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'a2dd9063-64b4-4fe2-b4c5-8dd711648244')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "User Operations",
        "body": "Get Current User\n\nGET /eventbrite/v3/users/me/\n\nResponse:\n\n{\n  \"emails\": [{\"email\": \"user@example.com\", \"verified\": true, \"primary\": true}],\n  \"id\": \"1234567890\",\n  \"name\": \"John Doe\",\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"is_public\": false,\n  \"image_id\": null\n}\n\nList User Organizations\n\nGET /eventbrite/v3/users/me/organizations/\n\nList User Orders\n\nGET /eventbrite/v3/users/me/orders/"
      },
      {
        "title": "Organization Operations",
        "body": "List Organization Events\n\nGET /eventbrite/v3/organizations/{organization_id}/events/\n\nQuery parameters:\n\nstatus - Filter by status: draft, live, started, ended, completed, canceled\norder_by - Sort order: start_asc, start_desc, created_asc, created_desc\ntime_filter - Filter by time: current_future, past\n\nList Organization Venues\n\nGET /eventbrite/v3/organizations/{organization_id}/venues/\n\nCreate Venue\n\nPOST /eventbrite/v3/organizations/{organization_id}/venues/\nContent-Type: application/json\n\n{\n  \"venue\": {\n    \"name\": \"Conference Center\",\n    \"address\": {\n      \"address_1\": \"123 Main St\",\n      \"city\": \"San Francisco\",\n      \"region\": \"CA\",\n      \"postal_code\": \"94105\",\n      \"country\": \"US\"\n    }\n  }\n}"
      },
      {
        "title": "Event Operations",
        "body": "Get Event\n\nGET /eventbrite/v3/events/{event_id}/\n\nCreate Event\n\nEvents must be created under an organization:\n\nPOST /eventbrite/v3/organizations/{organization_id}/events/\nContent-Type: application/json\n\n{\n  \"event\": {\n    \"name\": {\"html\": \"My Event\"},\n    \"description\": {\"html\": \"<p>Event description</p>\"},\n    \"start\": {\n      \"timezone\": \"America/Los_Angeles\",\n      \"utc\": \"2026-03-01T19:00:00Z\"\n    },\n    \"end\": {\n      \"timezone\": \"America/Los_Angeles\",\n      \"utc\": \"2026-03-01T22:00:00Z\"\n    },\n    \"currency\": \"USD\",\n    \"online_event\": false,\n    \"listed\": true,\n    \"shareable\": true,\n    \"capacity\": 100,\n    \"category_id\": \"103\",\n    \"format_id\": \"1\"\n  }\n}\n\nUpdate Event\n\nPOST /eventbrite/v3/events/{event_id}/\nContent-Type: application/json\n\n{\n  \"event\": {\n    \"name\": {\"html\": \"Updated Event Name\"},\n    \"capacity\": 200\n  }\n}\n\nPublish Event\n\nPOST /eventbrite/v3/events/{event_id}/publish/\n\nUnpublish Event\n\nPOST /eventbrite/v3/events/{event_id}/unpublish/\n\nCancel Event\n\nPOST /eventbrite/v3/events/{event_id}/cancel/\n\nDelete Event\n\nDELETE /eventbrite/v3/events/{event_id}/"
      },
      {
        "title": "Ticket Class Operations",
        "body": "List Ticket Classes\n\nGET /eventbrite/v3/events/{event_id}/ticket_classes/\n\nCreate Ticket Class\n\nPOST /eventbrite/v3/events/{event_id}/ticket_classes/\nContent-Type: application/json\n\n{\n  \"ticket_class\": {\n    \"name\": \"General Admission\",\n    \"description\": \"Standard entry ticket\",\n    \"quantity_total\": 100,\n    \"cost\": \"USD,2500\",\n    \"sales_start\": \"2026-01-01T00:00:00Z\",\n    \"sales_end\": \"2026-02-28T23:59:59Z\",\n    \"minimum_quantity\": 1,\n    \"maximum_quantity\": 10\n  }\n}\n\nFor free tickets, omit the cost field or set free: true.\n\nUpdate Ticket Class\n\nPOST /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/\nContent-Type: application/json\n\n{\n  \"ticket_class\": {\n    \"quantity_total\": 150\n  }\n}\n\nDelete Ticket Class\n\nDELETE /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/"
      },
      {
        "title": "Attendee Operations",
        "body": "List Event Attendees\n\nGET /eventbrite/v3/events/{event_id}/attendees/\n\nQuery parameters:\n\nstatus - Filter by status: attending, not_attending, unpaid\nchanged_since - ISO 8601 timestamp to get attendees changed after\n\nGet Attendee\n\nGET /eventbrite/v3/events/{event_id}/attendees/{attendee_id}/"
      },
      {
        "title": "Order Operations",
        "body": "List Event Orders\n\nGET /eventbrite/v3/events/{event_id}/orders/\n\nQuery parameters:\n\nstatus - Filter by status: active, inactive, all\nchanged_since - ISO 8601 timestamp\n\nGet Order\n\nGET /eventbrite/v3/orders/{order_id}/"
      },
      {
        "title": "Venue Operations",
        "body": "Get Venue\n\nGET /eventbrite/v3/venues/{venue_id}/\n\nUpdate Venue\n\nPOST /eventbrite/v3/venues/{venue_id}/\nContent-Type: application/json\n\n{\n  \"venue\": {\n    \"name\": \"Updated Venue Name\"\n  }\n}"
      },
      {
        "title": "Reference Data",
        "body": "List Categories\n\nGET /eventbrite/v3/categories/\n\nResponse:\n\n{\n  \"locale\": \"en_US\",\n  \"pagination\": {\"object_count\": 21, \"page_number\": 1, \"page_size\": 50},\n  \"categories\": [\n    {\"id\": \"103\", \"name\": \"Music\", \"short_name\": \"Music\"},\n    {\"id\": \"101\", \"name\": \"Business & Professional\", \"short_name\": \"Business\"},\n    {\"id\": \"110\", \"name\": \"Food & Drink\", \"short_name\": \"Food & Drink\"}\n  ]\n}\n\nGet Category\n\nGET /eventbrite/v3/categories/{category_id}/\n\nList Subcategories\n\nGET /eventbrite/v3/subcategories/\n\nList Formats\n\nGET /eventbrite/v3/formats/\n\nCommon formats:\n\n1 - Conference\n2 - Seminar or Talk\n5 - Festival or Fair\n6 - Concert or Performance\n9 - Class, Training, or Workshop\n10 - Meeting or Networking Event\n11 - Party or Social Gathering\n\nList Countries\n\nGET /eventbrite/v3/system/countries/\n\nList Regions\n\nGET /eventbrite/v3/system/regions/"
      },
      {
        "title": "Pagination",
        "body": "Eventbrite uses a combination of page-based and continuation-based pagination:\n\nGET /eventbrite/v3/organizations/{org_id}/events/?page_size=50\n\nResponse:\n\n{\n  \"pagination\": {\n    \"object_count\": 150,\n    \"page_number\": 1,\n    \"page_size\": 50,\n    \"page_count\": 3,\n    \"has_more_items\": true,\n    \"continuation\": \"eyJwYWdlIjogMn0\"\n  },\n  \"events\": [...]\n}\n\nFor subsequent pages, use the continuation token:\n\nGET /eventbrite/v3/organizations/{org_id}/events/?continuation=eyJwYWdlIjogMn0"
      },
      {
        "title": "Expansions",
        "body": "Include related data by using the expand parameter:\n\nGET /eventbrite/v3/events/{event_id}/?expand=venue,ticket_classes,category\n\nCommon expansions:\n\nvenue - Include venue details\nticket_classes - Include ticket information\ncategory - Include category details\nsubcategory - Include subcategory details\nformat - Include format details\norganizer - Include organizer information"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/eventbrite/v3/users/me/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst user = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/eventbrite/v3/users/me/',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\nuser = response.json()"
      },
      {
        "title": "Notes",
        "body": "All endpoint paths should end with a trailing slash (/)\nEvent creation requires an organization - use organization-based endpoints\nLegacy user-based event endpoints are deprecated; use organization equivalents\nTimestamps are in ISO 8601 format (UTC)\nCurrency amounts are in minor units (cents) - e.g., \"USD,2500\" = $25.00\nRate limit: 1,000 calls per hour, 48,000 calls per day\nEvent Search API is no longer publicly available (deprecated February 2020)\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"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Eventbrite connection or invalid arguments401Invalid or missing Maton API key403Not authorized (check scopes or use organization endpoints)404Resource not found429Rate limited4xx/5xxPassthrough error from Eventbrite API"
      },
      {
        "title": "Common Errors",
        "body": "NOT_AUTHORIZED with legacy user endpoints:\n\n{\"status_code\": 403, \"error\": \"NOT_AUTHORIZED\", \"error_description\": \"This user is not able to use legacy user endpoints, please use the organization equivalent.\"}\n\nSolution: Use /organizations/{org_id}/events/ instead of /users/me/owned_events/"
      },
      {
        "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 eventbrite. For example:\n\nCorrect: https://gateway.maton.ai/eventbrite/v3/users/me/\nIncorrect: https://gateway.maton.ai/v3/users/me/"
      },
      {
        "title": "Resources",
        "body": "Eventbrite API Documentation\nAPI Basics\nAPI Explorer\nMaton Community\nMaton Support"
      }
    ],
    "body": "Eventbrite\n\nAccess the Eventbrite API with managed OAuth authentication. Manage events, venues, ticket classes, orders, attendees, and more.\n\nQuick Start\n# Get current user\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/eventbrite/v3/users/me/')\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/eventbrite/{native-api-path}\n\n\nReplace {native-api-path} with the actual Eventbrite API endpoint path. The gateway proxies requests to www.eventbriteapi.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 Eventbrite 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=eventbrite&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': 'eventbrite'}).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\": \"a2dd9063-64b4-4fe2-b4c5-8dd711648244\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-07T09:11:20.516013Z\",\n    \"last_updated_time\": \"2026-02-07T09:14:35.273822Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"eventbrite\",\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 Eventbrite 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/eventbrite/v3/users/me/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', 'a2dd9063-64b4-4fe2-b4c5-8dd711648244')\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\nUser Operations\nGet Current User\nGET /eventbrite/v3/users/me/\n\n\nResponse:\n\n{\n  \"emails\": [{\"email\": \"user@example.com\", \"verified\": true, \"primary\": true}],\n  \"id\": \"1234567890\",\n  \"name\": \"John Doe\",\n  \"first_name\": \"John\",\n  \"last_name\": \"Doe\",\n  \"is_public\": false,\n  \"image_id\": null\n}\n\nList User Organizations\nGET /eventbrite/v3/users/me/organizations/\n\nList User Orders\nGET /eventbrite/v3/users/me/orders/\n\nOrganization Operations\nList Organization Events\nGET /eventbrite/v3/organizations/{organization_id}/events/\n\n\nQuery parameters:\n\nstatus - Filter by status: draft, live, started, ended, completed, canceled\norder_by - Sort order: start_asc, start_desc, created_asc, created_desc\ntime_filter - Filter by time: current_future, past\nList Organization Venues\nGET /eventbrite/v3/organizations/{organization_id}/venues/\n\nCreate Venue\nPOST /eventbrite/v3/organizations/{organization_id}/venues/\nContent-Type: application/json\n\n{\n  \"venue\": {\n    \"name\": \"Conference Center\",\n    \"address\": {\n      \"address_1\": \"123 Main St\",\n      \"city\": \"San Francisco\",\n      \"region\": \"CA\",\n      \"postal_code\": \"94105\",\n      \"country\": \"US\"\n    }\n  }\n}\n\nEvent Operations\nGet Event\nGET /eventbrite/v3/events/{event_id}/\n\nCreate Event\n\nEvents must be created under an organization:\n\nPOST /eventbrite/v3/organizations/{organization_id}/events/\nContent-Type: application/json\n\n{\n  \"event\": {\n    \"name\": {\"html\": \"My Event\"},\n    \"description\": {\"html\": \"<p>Event description</p>\"},\n    \"start\": {\n      \"timezone\": \"America/Los_Angeles\",\n      \"utc\": \"2026-03-01T19:00:00Z\"\n    },\n    \"end\": {\n      \"timezone\": \"America/Los_Angeles\",\n      \"utc\": \"2026-03-01T22:00:00Z\"\n    },\n    \"currency\": \"USD\",\n    \"online_event\": false,\n    \"listed\": true,\n    \"shareable\": true,\n    \"capacity\": 100,\n    \"category_id\": \"103\",\n    \"format_id\": \"1\"\n  }\n}\n\nUpdate Event\nPOST /eventbrite/v3/events/{event_id}/\nContent-Type: application/json\n\n{\n  \"event\": {\n    \"name\": {\"html\": \"Updated Event Name\"},\n    \"capacity\": 200\n  }\n}\n\nPublish Event\nPOST /eventbrite/v3/events/{event_id}/publish/\n\nUnpublish Event\nPOST /eventbrite/v3/events/{event_id}/unpublish/\n\nCancel Event\nPOST /eventbrite/v3/events/{event_id}/cancel/\n\nDelete Event\nDELETE /eventbrite/v3/events/{event_id}/\n\nTicket Class Operations\nList Ticket Classes\nGET /eventbrite/v3/events/{event_id}/ticket_classes/\n\nCreate Ticket Class\nPOST /eventbrite/v3/events/{event_id}/ticket_classes/\nContent-Type: application/json\n\n{\n  \"ticket_class\": {\n    \"name\": \"General Admission\",\n    \"description\": \"Standard entry ticket\",\n    \"quantity_total\": 100,\n    \"cost\": \"USD,2500\",\n    \"sales_start\": \"2026-01-01T00:00:00Z\",\n    \"sales_end\": \"2026-02-28T23:59:59Z\",\n    \"minimum_quantity\": 1,\n    \"maximum_quantity\": 10\n  }\n}\n\n\nFor free tickets, omit the cost field or set free: true.\n\nUpdate Ticket Class\nPOST /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/\nContent-Type: application/json\n\n{\n  \"ticket_class\": {\n    \"quantity_total\": 150\n  }\n}\n\nDelete Ticket Class\nDELETE /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/\n\nAttendee Operations\nList Event Attendees\nGET /eventbrite/v3/events/{event_id}/attendees/\n\n\nQuery parameters:\n\nstatus - Filter by status: attending, not_attending, unpaid\nchanged_since - ISO 8601 timestamp to get attendees changed after\nGet Attendee\nGET /eventbrite/v3/events/{event_id}/attendees/{attendee_id}/\n\nOrder Operations\nList Event Orders\nGET /eventbrite/v3/events/{event_id}/orders/\n\n\nQuery parameters:\n\nstatus - Filter by status: active, inactive, all\nchanged_since - ISO 8601 timestamp\nGet Order\nGET /eventbrite/v3/orders/{order_id}/\n\nVenue Operations\nGet Venue\nGET /eventbrite/v3/venues/{venue_id}/\n\nUpdate Venue\nPOST /eventbrite/v3/venues/{venue_id}/\nContent-Type: application/json\n\n{\n  \"venue\": {\n    \"name\": \"Updated Venue Name\"\n  }\n}\n\nReference Data\nList Categories\nGET /eventbrite/v3/categories/\n\n\nResponse:\n\n{\n  \"locale\": \"en_US\",\n  \"pagination\": {\"object_count\": 21, \"page_number\": 1, \"page_size\": 50},\n  \"categories\": [\n    {\"id\": \"103\", \"name\": \"Music\", \"short_name\": \"Music\"},\n    {\"id\": \"101\", \"name\": \"Business & Professional\", \"short_name\": \"Business\"},\n    {\"id\": \"110\", \"name\": \"Food & Drink\", \"short_name\": \"Food & Drink\"}\n  ]\n}\n\nGet Category\nGET /eventbrite/v3/categories/{category_id}/\n\nList Subcategories\nGET /eventbrite/v3/subcategories/\n\nList Formats\nGET /eventbrite/v3/formats/\n\n\nCommon formats:\n\n1 - Conference\n2 - Seminar or Talk\n5 - Festival or Fair\n6 - Concert or Performance\n9 - Class, Training, or Workshop\n10 - Meeting or Networking Event\n11 - Party or Social Gathering\nList Countries\nGET /eventbrite/v3/system/countries/\n\nList Regions\nGET /eventbrite/v3/system/regions/\n\nPagination\n\nEventbrite uses a combination of page-based and continuation-based pagination:\n\nGET /eventbrite/v3/organizations/{org_id}/events/?page_size=50\n\n\nResponse:\n\n{\n  \"pagination\": {\n    \"object_count\": 150,\n    \"page_number\": 1,\n    \"page_size\": 50,\n    \"page_count\": 3,\n    \"has_more_items\": true,\n    \"continuation\": \"eyJwYWdlIjogMn0\"\n  },\n  \"events\": [...]\n}\n\n\nFor subsequent pages, use the continuation token:\n\nGET /eventbrite/v3/organizations/{org_id}/events/?continuation=eyJwYWdlIjogMn0\n\nExpansions\n\nInclude related data by using the expand parameter:\n\nGET /eventbrite/v3/events/{event_id}/?expand=venue,ticket_classes,category\n\n\nCommon expansions:\n\nvenue - Include venue details\nticket_classes - Include ticket information\ncategory - Include category details\nsubcategory - Include subcategory details\nformat - Include format details\norganizer - Include organizer information\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/eventbrite/v3/users/me/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst user = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/eventbrite/v3/users/me/',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\nuser = response.json()\n\nNotes\nAll endpoint paths should end with a trailing slash (/)\nEvent creation requires an organization - use organization-based endpoints\nLegacy user-based event endpoints are deprecated; use organization equivalents\nTimestamps are in ISO 8601 format (UTC)\nCurrency amounts are in minor units (cents) - e.g., \"USD,2500\" = $25.00\nRate limit: 1,000 calls per hour, 48,000 calls per day\nEvent Search API is no longer publicly available (deprecated February 2020)\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\nError Handling\nStatus\tMeaning\n400\tMissing Eventbrite connection or invalid arguments\n401\tInvalid or missing Maton API key\n403\tNot authorized (check scopes or use organization endpoints)\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Eventbrite API\nCommon Errors\n\nNOT_AUTHORIZED with legacy user endpoints:\n\n{\"status_code\": 403, \"error\": \"NOT_AUTHORIZED\", \"error_description\": \"This user is not able to use legacy user endpoints, please use the organization equivalent.\"}\n\n\nSolution: Use /organizations/{org_id}/events/ instead of /users/me/owned_events/\n\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 eventbrite. For example:\nCorrect: https://gateway.maton.ai/eventbrite/v3/users/me/\nIncorrect: https://gateway.maton.ai/v3/users/me/\nResources\nEventbrite API Documentation\nAPI Basics\nAPI Explorer\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/eventbrite",
    "publisherUrl": "https://clawhub.ai/byungkyu/eventbrite",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/eventbrite",
    "downloadUrl": "https://openagent3.xyz/downloads/eventbrite",
    "agentUrl": "https://openagent3.xyz/skills/eventbrite/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eventbrite/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eventbrite/agent.md"
  }
}