WhereCanIWatch — 技能工具
v1.0.0Find where to stream any movie or TV show in the US using the WhereCanIWatch.tv API. Use when a user asks "where can I watch [title]?", wants streaming avail...
1· 461·0 当前·0 累计
安全扫描
OpenClaw
安全
high confidenceThe skill's requests and runtime instructions match its stated purpose (calling a public WhereCanIWatch.tv API) and it doesn't ask for unrelated credentials, installs, or elevated persistence.
评估建议
This skill is coherent and lightweight, but note it makes outbound requests to https://www.wherecaniwatch.tv (title text you provide will be sent to that API). Before installing, consider: (1) privacy — avoid sending sensitive or personally identifying data you don't want recorded; (2) availability — the skill depends on an external site and its rate limits (listed in SKILL.md); (3) verify the domain uses HTTPS and is the legitimate service if you rely on deep links. No credentials or installs a...详细分析 ▾
✓ 用途与能力
Name/description (streaming availability lookup) align with the SKILL.md: all required actions are HTTP GETs to wherecaniwatch.tv and optional filtering by user-provided subscriptions. Nothing requested appears unrelated to the stated purpose.
✓ 指令范围
Runtime instructions are narrowly scoped: search endpoint, watch endpoint, simple filtering by user-declared subscriptions, and prescribed response formatting. The instructions do not ask the agent to read local files, environment variables, or other system state.
✓ 安装机制
Instruction-only skill with no install spec and no code files. Nothing is written to disk and no third-party packages are pulled in by the skill itself.
✓ 凭证需求
The skill declares no required environment variables, secrets, or config paths. That is proportional for a public-API lookup service.
✓ 持久化与权限
The skill is not always-enabled and does not request system-wide persistence or changes to other skills. Autonomous invocation is allowed (platform default) but is not combined with other concerning privileges.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/2/23
Initial release: streaming availability lookup via WhereCanIWatch.tv API
● 无害
安装命令
点击复制官方npx clawhub@latest install wherecaniwatch
镜像加速npx clawhub@latest install wherecaniwatch --registry https://cn.longxiaskill.com 镜像可用
技能文档
Answer "Where can I watch X?" using the WhereCanIWatch.tv public API.
Workflow
1. Search for the title
GET https://www.wherecaniwatch.tv/api/search?q={title}
Returns array of matches. Pick the best match by title + year.
2. Get availability
GET https://www.wherecaniwatch.tv/api/watch/{slug}.json
Response:
{
"title": "Interstellar",
"year": 2014,
"type": "movie",
"rating": 8.7,
"genres": ["Science Fiction", "Drama"],
"bestDeal": {
"service": "Netflix",
"method": "subscription",
"price": null,
"url": "https://www.netflix.com/title/..."
},
"availability": [
{ "service": "Netflix", "method": "subscription", "price": null, "quality": ["4K"], "url": "..." },
{ "service": "Tubi", "method": "free", "price": null, "quality": ["HD"], "url": "..." },
{ "service": "Amazon Prime Video", "method": "rent", "price": 3.99, "quality": ["4K"], "url": "..." }
]
}
3. Filter by user's services (if known)
If the user has mentioned their subscriptions, filter availability to matching services. The first match is their best option.
4. Present the answer
- Lead with the best option and include the deep link URL
- Mention 1-2 alternatives (e.g., free option, cheapest rent)
- Link to the full page:
https://www.wherecaniwatch.tv/watch/{slug}
Response format
Interstellar is streaming on Netflix (subscription, 4K). Watch on Netflix
Also available free on Tubi (HD) or rent from $3.99 on Prime Video.
See all options on WhereCanIWatch
Methods
| Method | Meaning |
|---|---|
free | Free with ads or no account needed |
subscription | Included with paid subscription |
rent | Pay per view, temporary access |
buy | Pay to own permanently |
Rate limits
- Search: 10 requests/minute per IP
- Watch API: 60 requests/minute per IP
Notes
- US region only
- Results are smart-ranked by platform popularity (Netflix/Prime/Disney+ surface first)
- Data refreshed daily
- 2,400+ titles and growing