✓ Verified ✍️ Content Creation ✓ Enhanced Data

Wherecaniwatch

Find where to stream any movie or TV show in the US using the WhereCanIWatch.tv API.

Rating
4.8 (363 reviews)
Downloads
2,434 downloads
Version
1.0.0

Overview

Find where to stream any movie or TV show in the US using the WhereCanIWatch.tv API.

Complete Documentation

View Source →

WhereCanIWatch — Streaming Availability Lookup

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

Workflow

1. Search for the title

text
GET https://www.wherecaniwatch.tv/api/search?q={title}

Returns array of matches. Pick the best match by title + year.

2. Get availability

text
GET https://www.wherecaniwatch.tv/api/watch/{slug}.json

Response:

json
{
  "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

MethodMeaning
freeFree with ads or no account needed
subscriptionIncluded with paid subscription
rentPay per view, temporary access
buyPay 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

Installation

Terminal bash

openclaw install wherecaniwatch
    
Copied!

💻Code Examples

GET https://www.wherecaniwatch.tv/api/search?q={title}

get-httpswwwwherecaniwatchtvapisearchqtitle.txt
Returns array of matches. Pick the best match by title + year.

### 2. Get availability
example.json
{
  "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": "..." }
  ]
}

Tags

#media_and-streaming #api

Quick Info

Category Content Creation
Model Claude 3.5
Complexity One-Click
Author samthewise2855
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install wherecaniwatch