# Send WhereCanIWatch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wherecaniwatch",
    "name": "WhereCanIWatch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/samthewise2855/wherecaniwatch",
    "canonicalUrl": "https://clawhub.ai/samthewise2855/wherecaniwatch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wherecaniwatch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wherecaniwatch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wherecaniwatch",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T01:24:09.920Z",
      "expiresAt": "2026-05-18T01:24:09.920Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wherecaniwatch",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wherecaniwatch",
        "contentDisposition": "attachment; filename=\"wherecaniwatch-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wherecaniwatch"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wherecaniwatch"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wherecaniwatch",
    "downloadUrl": "https://openagent3.xyz/downloads/wherecaniwatch",
    "agentUrl": "https://openagent3.xyz/skills/wherecaniwatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wherecaniwatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wherecaniwatch/agent.md"
  }
}
```
## Documentation

### WhereCanIWatch — Streaming Availability Lookup

Answer "Where can I watch X?" using the WhereCanIWatch.tv public API.

### 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

MethodMeaningfreeFree with ads or no account neededsubscriptionIncluded with paid subscriptionrentPay per view, temporary accessbuyPay 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: samthewise2855
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-11T01:24:09.920Z
- Expires at: 2026-05-18T01:24:09.920Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wherecaniwatch)
- [Send to Agent page](https://openagent3.xyz/skills/wherecaniwatch/agent)
- [JSON manifest](https://openagent3.xyz/skills/wherecaniwatch/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wherecaniwatch/agent.md)
- [Download page](https://openagent3.xyz/downloads/wherecaniwatch)