Make your agent sell websites to local businesses on autopilot. Finds leads from Google Maps, builds a custom AI website for each one, sends outreach emails, and can even call them. Use when the user wants to find leads, generate websites, send emails, or make voice calls.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install unloopa-api或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install unloopa-api⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/unloopa-api/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: unloopa-api description: Make your agent sell websites to local businesses on autopilot. Finds leads from Google Maps, builds a custom AI website for each one, sends outreach emails, and can even call them. Use when the user wants to find leads, generate websites, send emails, or make voice calls. metadata: author: unloopa version: "1.3" openclaw: primaryEnv: UNLOOPA_API_KEY requires: env: - UNLOOPA_API_KEY ---
You control the Unloopa platform through its REST API. All requests go to https://dashboard.unloopa.com/api/v1/ with Bearer token authentication.
Every request needs the header:
Authorization: Bearer $UNLOOPA_API_KEY
The API key is set in the UNLOOPA_API_KEY environment variable. Keys start with unlpa_live_.
If the user hasn't configured their key yet, tell them:
export UNLOOPA_API_KEY=unlpa_live_...If you get a 401 unauthorized error, the key is missing or invalid — ask the user to check their key.
Before doing anything else, call GET /quota to discover:
This single call tells you everything about what the user can and can't do. Adapt your behavior based on the response:
| quota field | What it means | |---|---| | voice_enabled: false | Don't offer voice calling — they need Pro plan. Share purchase_links.upgrade | | video_enabled: false | Don't offer video generation — they need Pro plan | | voice_credits: 0 | Can't make calls — share purchase_links.voice_credits | | websites.remaining: 0 | Can't generate leads — quota resets at resets_at |
All errors return:
{ "error": { "code": "error_code", "message": "Human-readable message", "details": {} } }
Error codes: unauthorized (401), invalid_input (400), not_found (404), plan_required (403), insufficient_credits (402), quota_exceeded (429), rate_limited (429), setup_required (400), limit_reached (400), invalid_state (400), internal_error (500).
When you get plan_required (403), share the upgrade link from quota. When you get insufficient_credits (402), share the credit purchase links. When rate limited, check the Retry-After header (seconds).
---
The /command endpoint runs the entire pipeline automatically: scrape leads → generate websites → enrich emails → send outreach. Just describe what you want.
1. GET /quota → check websites.remaining > 0
2. POST /command → submit natural language command (full pipeline runs automatically)
3. GET /jobs/{job_id} → poll every 5-10s until status=completed
4. GET /leads?job_id={job_id} → view generated leads with websites, emails, etc.
1. GET /outreach/status → verify configured=true, remaining_today > 0
2. GET /leads?has_email=true → find leads with emails
3. GET /outreach/templates → pick a template
4. POST /outreach/send → queue emails
If configured=false, tell the user to connect an email account at the setup_url in the response.
Skip this workflow entirely if voice_enabled=false in /quota. Tell the user they need Pro and share the upgrade link.
Prerequisites: voice_enabled=true + voice_credits > 0 + at least 1 phone number + at least 1 voice agent.
1. GET /quota → voice_enabled? voice_credits > 0?
If voice_credits=0 → share purchase_links.voice_credits
2. GET /phone-numbers → count > 0? (max 3)
If empty → POST /phone-numbers/search + POST /phone-numbers/buy
3. GET /voice/agents → count > 0? (max 3)
If empty → POST /voice/agents (create one)
4. POST /voice/call → single call, OR:
5. POST /voice/campaigns → bulk campaign (starts as draft)
6. PATCH /voice/campaigns/{id} → action=activate, then action=trigger
The /command endpoint now handles steps 1-3 automatically. Voice calling is the only manual step.
1. GET /quota → know the plan, adapt accordingly
2. POST /command → poll /jobs/{id} → GET /leads (scrape + websites + emails + outreach all automatic)
3. Voice (Pro only): /phone-numbers → /voice/agents → /voice/campaigns
---
Submit a natural language lead generation command. The API automatically runs the full pipeline: scrape → generate websites → enrich emails/socials → send outreach. No need to mention each step in the command.
Body:
{
"command": "Find 50 plumbers in Miami",
"max_results": 50,
"with_video": false,
"with_vsl": false
}
command (required, string, max 1000 chars) — just describe the niche and location. Any number mentioned in the command is ignored — use max_results to control lead count.max_results (optional, 1-100, default: 100, or 10 when with_video/with_vsl is true)with_video (optional, bool, Pro plan only)with_vsl (optional, bool, Pro plan only)Default behavior: The API always overrides what's in the command text. It scrapes up to max_results leads (default 100), generates a website for each, finds email addresses, enriches social profiles, and sends outreach emails — all automatically. Numbers in the command like "Find 15 plumbers" are ignored; use max_results instead.
Response: { job_id, status: "processing", defaults: { max_results, generate_websites, enrich_emails, send_outreach, with_video, with_vsl }, quota: { used, limit, remaining } }
---
List submitted commands.
Query: ?limit=20&offset=0 (limit max 100)
Response: { jobs: [{ job_id, command, intent, status, error, created_at, updated_at }], total, limit, offset }
---
Poll a job for progress and results.
Response:
{
"job_id": "uuid",
"status": "processing|completed|failed",
"progress": 75,
"current_step": "Generating websites...",
"steps": [{ "name": "scraping", "status": "completed", "message": "Found 50 leads", "count": 50 }],
"result": {
"websites": [{ "id": "uuid", "url": "https://...", "business_name": "...", "city": "...", "industry": "..." }],
"leads_scraped": 50,
"emails_sent": 0
},
"error": null
}
Poll every 5-10 seconds. Jobs take 30s to 5 minutes depending on count and video.
---
List and filter leads.
Query params (all optional):
limit (1-100, default 50), offset (default 0)city — partial match (e.g. "miami")industry — partial match (e.g. "plumber")has_phone=true — only leads with phone numbershas_email=true — only leads with email addressesmin_rating — minimum Google rating (e.g. 4.0)min_reviews — minimum review countjob_id — leads from a specific commandsearch — free text search across name, city, industrycreated_after — ISO date (e.g. "2025-01-15")created_before — ISO datehas_website=true — only leads with generated website URLshas_video=true — only leads with videovideo_status — pending|generating|completed|failed...
安装 Unloopa Api 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/unloopa-api/ 目录(个人级,所有项目可用),或 .claude/skills/unloopa-api/(项目级)。重启 AI 客户端后,用 /unloopa-api 主动调用,或让 AI 根据上下文自动发现并使用。
Unloopa Api 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Unloopa Api 可免费安装使用。请查阅仓库了解许可证信息。
Make your agent sell websites to local businesses on autopilot. Finds leads from Google Maps, builds a custom AI website for each one, sends outreach emails, and can even call them. Use when the user wants to find leads, generate websites, send emails, or make voice calls.
Unloopa Api 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。