Install
openclaw skills install wherecaniwatchFind 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 availability, needs to compare prices across services, or wants to know if something is on Netflix/Hulu/Disney+/etc. Supports filtering by user's subscriptions.
openclaw skills install wherecaniwatchAnswer "Where can I watch X?" using the WhereCanIWatch.tv public API.
GET https://www.wherecaniwatch.tv/api/search?q={title}
Returns array of matches. Pick the best match by title + year.
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": "..." }
]
}
If the user has mentioned their subscriptions, filter availability to matching services. The first match is their best option.
https://www.wherecaniwatch.tv/watch/{slug}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
| 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 |