← 返回 Skills 市场
54
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install veedcrawl
功能描述
Give OpenClaw the ability to access social media content. It can search across TikTok, Instagram, and YouTube for videos, watch TikTok/Reels/YouTube, retriev...
使用说明 (SKILL.md)
Veedcrawl API
Use Veedcrawl for public social video discovery and analysis across supported video platforms.
Runtime
- Require
VEEDCRAWL_API_KEYbefore making protected requests. - Use
VEEDCRAWL_BASE_URLwhen set. Otherwise usehttps://api.veedcrawl.com. - Use
curlfor direct API calls. - Consult
https://docs.veedcrawl.comorhttps://veedcrawl.com/openapi.jsonwhen an endpoint shape is unclear.
Prepare shell examples with:
API_BASE="${VEEDCRAWL_BASE_URL:-https://api.veedcrawl.com}"
AUTH_HEADER="x-api-key: ${VEEDCRAWL_API_KEY}"
Choose The Workflow
- Start with
POST /v1/searchwhen the user gives a topic, keyword, creator idea, competitor, product, or trend instead of video URLs. - Start with
GET /v1/tiktok/profileorGET /v1/instagram/profilewhen the user gives a creator username or public profile URL. - Call
GET /v1/metadata?url=...for normalized per-video metadata, stats, author, tags, media details, and timestamps. - Call
POST /v1/transcriptwhen spoken content matters. - Call
POST /v1/extractwhen the task needs structured conclusions such as hooks, claims, products, CTAs, format analysis, sponsorship signals, or summaries. - Shortlist before running bulk transcript or extraction jobs. Search and profile data can narrow the video set first.
Async Jobs
search, transcript, and extract return a jobId.
- Save the returned
jobId. - Poll
GET /v1/search/{jobId},GET /v1/transcript/{jobId}, orGET /v1/extract/{jobId}untilstatusiscompletedorfailed. - Use
resultonly after completion. - Surface a failed job clearly instead of guessing at missing output.
- Preserve timestamps and source URLs when producing research notes, citations, evidence tables, or creator briefs.
Request Examples
Search videos:
curl -X POST "$API_BASE/v1/search" \
-H "$AUTH_HEADER" \
-H "Content-Type: application/json" \
-d '{
"query": "skincare morning routine",
"platforms": ["tiktok", "instagram", "youtube"],
"limit": 25,
"sort": "relevant",
"timePeriod": "past_month",
"filters": { "language": "en", "duration": "short", "minLikes": 1000 }
}'
Poll a search job:
curl "$API_BASE/v1/search/JOB_ID" \
-H "$AUTH_HEADER"
Inspect one video:
curl "$API_BASE/v1/metadata?url=VIDEO_URL" \
-H "$AUTH_HEADER"
Get a creator profile:
curl "$API_BASE/v1/tiktok/profile?username=CREATOR_USERNAME&limit=12" \
-H "$AUTH_HEADER"
Queue a transcript:
curl -X POST "$API_BASE/v1/transcript" \
-H "$AUTH_HEADER" \
-H "Content-Type: application/json" \
-d '{"url":"VIDEO_URL","mode":"auto"}'
Extract structured findings:
curl -X POST "$API_BASE/v1/extract" \
-H "$AUTH_HEADER" \
-H "Content-Type: application/json" \
-d '{"url":"VIDEO_URL","prompt":"Extract the hook, main claim, and call to action"}'
Output Defaults
- Prefer structured tables or JSON when comparing videos or creators.
- Keep video URL, platform, creator identity, and timestamps with extracted findings.
- Do not infer engagement stats, transcript text, or extraction output that the API did not return.
- State when a result is based on metadata only versus transcript or extraction evidence.
能力标签
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install veedcrawl - 安装完成后,直接呼叫该 Skill 的名称或使用
/veedcrawl触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial Veedcrawl skill for social video search, video understanding, creator profiles, transcripts, and extraction.
元数据
常见问题
Veed Crawl 是什么?
Give OpenClaw the ability to access social media content. It can search across TikTok, Instagram, and YouTube for videos, watch TikTok/Reels/YouTube, retriev... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 54 次。
如何安装 Veed Crawl?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install veedcrawl」即可一键安装,无需额外配置。
Veed Crawl 是免费的吗?
是的,Veed Crawl 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Veed Crawl 支持哪些平台?
Veed Crawl 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Veed Crawl?
由 VeedCrawl(@veedcrawl)开发并维护,当前版本 v1.0.0。
推荐 Skills