Lemlist API integration with managed OAuth. Sales automation and cold outreach platform. Use this skill when users want to manage campaigns, leads, activities, schedules, or unsubscribes in Lemlist. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install lemlist或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install lemlist⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/lemlist/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: lemlist description: | Lemlist API integration with managed OAuth. Sales automation and cold outreach platform. Use this skill when users want to manage campaigns, leads, activities, schedules, or unsubscribes in Lemlist. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway). compatibility: Requires network access and valid Maton API key metadata: author: maton version: "1.0" clawdbot: emoji: 🧠 homepage: "https://maton.ai" requires: env: - MATON_API_KEY ---
Access the Lemlist API with managed OAuth authentication. Manage campaigns, leads, activities, schedules, sequences, and unsubscribes for sales automation and cold outreach.
# List campaigns
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/lemlist/api/campaigns')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
https://gateway.maton.ai/lemlist/api/{resource}
Replace {resource} with the actual Lemlist API endpoint path. The gateway proxies requests to api.lemlist.com/api and automatically injects your OAuth token.
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"
Manage your Lemlist OAuth connections at https://ctrl.maton.ai.
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections?app=lemlist&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
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'app': 'lemlist'}).encode()
req = urllib.request.Request('https://ctrl.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
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.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": "3ecf268f-42ad-40cc-b77a-25e020fbf591",
"status": "ACTIVE",
"creation_time": "2026-02-12T02:00:53.023887Z",
"last_updated_time": "2026-02-12T02:01:45.284131Z",
"url": "https://connect.maton.ai/?session_token=...",
"app": "lemlist",
"metadata": {}
}
}
Open the returned url in a browser to complete OAuth authorization.
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.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
If you have multiple Lemlist connections, specify which one to use with the Maton-Connection header:
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/lemlist/api/campaigns')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Maton-Connection', '3ecf268f-42ad-40cc-b77a-25e020fbf591')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
If omitted, the gateway uses the default (oldest) active connection.
GET /lemlist/api/team
Returns team information including user IDs and settings.
GET /lemlist/api/team/credits
Returns remaining credits balance.
GET /lemlist/api/team/senders
Returns all team members and their associated campaigns.
GET /lemlist/api/campaigns
POST /lemlist/api/campaigns
Content-Type: application/json
{
"name": "My Campaign"
}
Creates a new campaign with an empty sequence and default schedule automatically added.
GET /lemlist/api/campaigns/{campaignId}
PATCH /lemlist/api/campaigns/{campaignId}
Content-Type: application/json
{
"name": "Updated Campaign Name"
}
POST /lemlist/api/campaigns/{campaignId}/pause
Pauses a running campaign.
GET /lemlist/api/campaigns/{campaignId}/sequences
Returns all sequences and steps for a campaign.
GET /lemlist/api/campaigns/{campaignId}/schedules
Returns all schedules associated with a campaign.
POST /lemlist/api/campaigns/{campaignId}/leads
Content-Type: application/json
{
"email": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"companyName": "Acme Inc"
}
Creates a new lead and adds it to the campaign. If the lead already exists, it will be inserted into the campaign.
GET /lemlist/api/leads/{email}
PATCH /lemlist/api/campaigns/{campaignId}/leads/{email}
Content-Type: application/json
{
"firstName": "Jane",
"lastName": "Smith"
}
DELETE /lemlist/api/campaigns/{campaignId}/leads/{email}
GET /lemlist/api/activities
Returns the history of campaign activities (last 100 activities).
Query parameters:
campaignId - Filter by campaigntype - Filter by activity type (emailsSent, emailsOpened, emailsClicked, etc.)GET /lemlist/api/schedules
Returns all schedules with pagination.
Response:
{
"schedules": [...],
"pagination": {
"totalRecords": 10,
"currentPage": 1,
"nextPage": 2,
"totalPage": 2
}
}
POST /lemlist/api/schedules
Content-Type: application/json
{
"name": "Business Hours",
"timezone": "America/New_York",
"start": "09:00",
"end": "17:00",
"weekdays": [1, 2, 3, 4, 5]
}
Weekdays: 0 = Sunday, 1 = Monday, ..., 6 = Saturday
GET /lemlist/api/schedules/{scheduleId}
PATCH /lemlist/api/schedules/{scheduleId}
Content-Type: application/json
{
"name": "Updated Schedule",
"start": "08:00",
"end": "18:00"
}
DELETE /lemlist/api/schedules/{scheduleId}
GET /lemlist/api/companies
Returns companies with pagination.
Response:
{
"data": [...],
"total": 100
}
GET /lemlist/api/unsubscribes
Returns all unsubscribed emails and domains.
POST /lemlist/api/unsubscribes
Content-Type: application/json
{
"email": "[email protected]"
}
Can also add domains by using a domain value.
GET /lemlist/api/inbox/labels
Returns all labels available to the team.
...
安装 Lemlist 后,可以对 AI 说这些话来触发它
Help me get started with Lemlist
Explains what Lemlist does, walks through the setup, and runs a quick demo based on your current project
Use Lemlist to lemlist API integration with managed OAuth
Invokes Lemlist with the right parameters and returns the result directly in the conversation
What can I do with Lemlist in my marketing & growth workflow?
Lists the top use cases for Lemlist, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/lemlist/ 目录(个人级,所有项目可用),或 .claude/skills/lemlist/(项目级)。重启 AI 客户端后,用 /lemlist 主动调用,或让 AI 根据上下文自动发现并使用。
Lemlist 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Lemlist 可免费安装使用。请查阅仓库了解许可证信息。
Lemlist API integration with managed OAuth. Sales automation and cold outreach platform. Use this skill when users want to manage campaigns, leads, activities, schedules, or unsubscribes in Lemlist. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
Lemlist 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Lemlist
Identifies repetitive steps in your workflow and sets up Lemlist to handle them automatically