Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

eventbriteeventbrite 开发

Agent Skill

eventbrite 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

172,166

周安装

7,320

GitHub Stars

3

下载量

60,317
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:eventbrite(eventbrite 开发)
来源仓库:https://github.com/byungkyu/eventbrite
安装命令:
openclaw skills install eventbrite
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install eventbrite

简介

Eventbrite API 与托管 OAuth 集成。管理活动、场地、门票类别、订单和与会者。

  • 当用户想要创建和管理活动、检查订单、查看与会者或访问活动类别时,请使用此技能。
  • 对于其他第三方应用程序,请使用 api-gateway 技能 (https://clawhub.ai/byungkyu/api-gateway)。
  • 需要网络访问和有效的 Maton API 密钥。

SKILL.md

name
eventbrite
description
|
metadata
author
maton
version
1.0
clawdbot
emoji
🧠
requires
env

Eventbrite

Access the Eventbrite API with managed OAuth authentication. Manage events, venues, ticket classes, orders, attendees, and more.

Quick Start

# Get current user
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/eventbrite/v3/users/me/')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Base URL

https://api.maton.ai/eventbrite/{native-api-path}

Maton proxies requests to www.eventbriteapi.com and automatically injects your OAuth token.

Authentication

All requests require the Maton API key in the Authorization header:

Authorization: Bearer $MATON_API_KEY

Environment Variable: Set your API key as MATON_API_KEY:

export MATON_API_KEY="YOUR_API_KEY"

Getting Your API Key

  1. Sign in or create an account at maton.ai
  2. Go to maton.ai/settings
  3. Copy your API key

Connection Management

Manage your Eventbrite OAuth connections at https://api.maton.ai.

List Connections

python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/connections?app=eventbrite&status=ACTIVE')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Create Connection

python <<'EOF'
import urllib.request, os, json
data = json.dumps({'app': 'eventbrite'}).encode()
req = urllib.request.Request('https://api.maton.ai/connections', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Get Connection

python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/connections/{connection_id}')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Response:

{
  "connection": {
    "connection_id": "{connection_id}",
    "status": "ACTIVE",
    "creation_time": "2026-02-07T09:11:20.516013Z",
    "last_updated_time": "2026-02-07T09:14:35.273822Z",
    "url": "https://connect.maton.ai/?session_token=...",
    "app": "eventbrite",
    "metadata": {}
  }
}

Open the returned url in a browser to complete OAuth authorization.

Delete Connection

python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/connections/{connection_id}', method='DELETE')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Specifying Connection

If you have multiple Eventbrite connections, specify which one to use with the Maton-Connection header:

python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/eventbrite/v3/users/me/')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Maton-Connection', '{connection_id}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

If you have multiple connections, always include this header to ensure requests go to the intended account.

Security & Permissions

  • Access is scoped to events, venues, ticket classes, orders, and attendees within the connected Eventbrite account.
  • All write operations require explicit user approval. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.

API Reference

User Operations

Get Current User

GET /eventbrite/v3/users/me/

Response:

{
  "emails": [{"email": "user@example.com", "verified": true, "primary": true}],
  "id": "1234567890",
  "name": "John Doe",
  "first_name": "John",
  "last_name": "Doe",
  "is_public": false,
  "image_id": null
}

List User Organizations

GET /eventbrite/v3/users/me/organizations/

List User Orders

GET /eventbrite/v3/users/me/orders/

Organization Operations

List Organization Events

GET /eventbrite/v3/organizations/{organization_id}/events/

Query parameters:

  • status - Filter by status: draft, live, started, ended, completed, canceled
  • order_by - Sort order: start_asc, start_desc, created_asc, created_desc
  • time_filter - Filter by time: current_future, past

List Organization Venues

GET /eventbrite/v3/organizations/{organization_id}/venues/

Create Venue

POST /eventbrite/v3/organizations/{organization_id}/venues/
Content-Type: application/json

{
  "venue": {
    "name": "Conference Center",
    "address": {
      "address_1": "123 Main St",
      "city": "San Francisco",
      "region": "CA",
      "postal_code": "94105",
      "country": "US"
    }
  }
}

Event Operations

Get Event

GET /eventbrite/v3/events/{event_id}/

Create Event

Events must be created under an organization:

POST /eventbrite/v3/organizations/{organization_id}/events/
Content-Type: application/json

{
  "event": {
    "name": {"html": "My Event"},
    "description": {"html": "<p>Event description</p>"},
    "start": {
      "timezone": "America/Los_Angeles",
      "utc": "2026-03-01T19:00:00Z"
    },
    "end": {
      "timezone": "America/Los_Angeles",
      "utc": "2026-03-01T22:00:00Z"
    },
    "currency": "USD",
    "online_event": false,
    "listed": true,
    "shareable": true,
    "capacity": 100,
    "category_id": "103",
    "format_id": "1"
  }
}

Update Event

POST /eventbrite/v3/events/{event_id}/
Content-Type: application/json

{
  "event": {
    "name": {"html": "Updated Event Name"},
    "capacity": 200
  }
}

Publish Event

POST /eventbrite/v3/events/{event_id}/publish/

Unpublish Event

POST /eventbrite/v3/events/{event_id}/unpublish/

Cancel Event

POST /eventbrite/v3/events/{event_id}/cancel/

Delete Event

DELETE /eventbrite/v3/events/{event_id}/

Ticket Class Operations

List Ticket Classes

GET /eventbrite/v3/events/{event_id}/ticket_classes/

Create Ticket Class

POST /eventbrite/v3/events/{event_id}/ticket_classes/
Content-Type: application/json

{
  "ticket_class": {
    "name": "General Admission",
    "description": "Standard entry ticket",
    "quantity_total": 100,
    "cost": "USD,2500",
    "sales_start": "2026-01-01T00:00:00Z",
    "sales_end": "2026-02-28T23:59:59Z",
    "minimum_quantity": 1,
    "maximum_quantity": 10
  }
}

For free tickets, omit the cost field or set free: true.

Update Ticket Class

POST /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/
Content-Type: application/json

{
  "ticket_class": {
    "quantity_total": 150
  }
}

Delete Ticket Class

DELETE /eventbrite/v3/events/{event_id}/ticket_classes/{ticket_class_id}/

Attendee Operations

List Event Attendees

GET /eventbrite/v3/events/{event_id}/attendees/

Query parameters:

  • status - Filter by status: attending, not_attending, unpaid
  • changed_since - ISO 8601 timestamp to get attendees changed after

Get Attendee

GET /eventbrite/v3/events/{event_id}/attendees/{attendee_id}/

Order Operations

List Event Orders

GET /eventbrite/v3/events/{event_id}/orders/

Query parameters:

  • status - Filter by status: active, inactive, all
  • changed_since - ISO 8601 timestamp

Get Order

GET /eventbrite/v3/orders/{order_id}/

Venue Operations

Get Venue

GET /eventbrite/v3/venues/{venue_id}/

Update Venue

POST /eventbrite/v3/venues/{venue_id}/
Content-Type: application/json

{
  "venue": {
    "name": "Updated Venue Name"
  }
}

Reference Data

List Categories

GET /eventbrite/v3/categories/

Response:

{
  "locale": "en_US",
  "pagination": {"object_count": 21, "page_number": 1, "page_size": 50},
  "categories": [
    {"id": "103", "name": "Music", "short_name": "Music"},
    {"id": "101", "name": "Business & Professional", "short_name": "Business"},
    {"id": "110", "name": "Food & Drink", "short_name": "Food & Drink"}
  ]
}

Get Category

GET /eventbrite/v3/categories/{category_id}/

List Subcategories

GET /eventbrite/v3/subcategories/

List Formats

GET /eventbrite/v3/formats/

Common formats:

  • 1 - Conference
  • 2 - Seminar or Talk
  • 5 - Festival or Fair
  • 6 - Concert or Performance
  • 9 - Class, Training, or Workshop
  • 10 - Meeting or Networking Event
  • 11 - Party or Social Gathering

List Countries

GET /eventbrite/v3/system/countries/

List Regions

GET /eventbrite/v3/system/regions/

Pagination

Eventbrite uses a combination of page-based and continuation-based pagination:

GET /eventbrite/v3/organizations/{org_id}/events/?page_size=50

Response:

{
  "pagination": {
    "object_count": 150,
    "page_number": 1,
    "page_size": 50,
    "page_count": 3,
    "has_more_items": true,
    "continuation": "eyJwYWdlIjogMn0"
  },
  "events": [...]
}

For subsequent pages, use the continuation token:

GET /eventbrite/v3/organizations/{org_id}/events/?continuation=eyJwYWdlIjogMn0

Expansions

Include related data by using the expand parameter:

GET /eventbrite/v3/events/{event_id}/?expand=venue,ticket_classes,category

Common expansions:

  • venue - Include venue details
  • ticket_classes - Include ticket information
  • category - Include category details
  • subcategory - Include subcategory details
  • format - Include format details
  • organizer - Include organizer information

Code Examples

JavaScript

const response = await fetch(
  'https://api.maton.ai/eventbrite/v3/users/me/',
  {
    headers: {
      'Authorization': `Bearer ${process.env.MATON_API_KEY}`
    }
  }
);
const user = await response.json();

Python

import os
import requests

response = requests.get(
    'https://api.maton.ai/eventbrite/v3/users/me/',
    headers={'Authorization': f'Bearer {os.environ["MATON_API_KEY"]}'}
)
user = response.json()

Notes

  • All endpoint paths should end with a trailing slash (/)
  • Event creation requires an organization - use organization-based endpoints
  • Legacy user-based event endpoints are deprecated; use organization equivalents
  • Timestamps are in ISO 8601 format (UTC)
  • Currency amounts are in minor units (cents) - e.g., "USD,2500" = $25.00
  • Rate limit: 1,000 calls per hour, 48,000 calls per day
  • Event Search API is no longer publicly available (deprecated February 2020)
  • IMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing
  • IMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments

Error Handling

StatusMeaning
400Missing Eventbrite connection or invalid arguments
401Invalid or missing Maton API key
403Not authorized (check scopes or use organization endpoints)
404Resource not found
429Rate limited
4xx/5xxPassthrough error from Eventbrite API

Common Errors

NOT_AUTHORIZED with legacy user endpoints:

{"status_code": 403, "error": "NOT_AUTHORIZED", "error_description": "This user is not able to use legacy user endpoints, please use the organization equivalent."}

Solution: Use /organizations/{org_id}/events/ instead of /users/me/owned_events/

Troubleshooting: API Key Issues

  1. Check that the MATON_API_KEY environment variable is set:
echo $MATON_API_KEY
  1. Verify the API key is valid by listing connections:
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/connections')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF

Troubleshooting: Invalid App Name

  1. Ensure your URL path starts with eventbrite. For example:
  • Correct: https://api.maton.ai/eventbrite/v3/users/me/
  • Incorrect: https://api.maton.ai/v3/users/me/

Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.59%
按下载量换算54,038

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills