Overview
Stream.cz is a Czech online video platform offering free access to TV series, films, and original content. Its GraphQL API lets you query available videos, episodes, and metadata programmatically. It is a good introduction to GraphQL for developers who want to try a query-based API.
Beginner Tip
This API uses GraphQL, not REST — you send POST requests with a JSON body containing your query string. Use the built-in GraphiQL explorer at the URL to interactively write and test queries before putting them in code.
Available Data
Example Response
{
"Title": "Inception",
"Year": "2010",
"Rated": "PG-13",
"Runtime": "148 min",
"Genre": "Action, Adventure, Sci-Fi",
"Director": "Christopher Nolan",
"Actors": "Leonardo DiCaprio, Joseph Gordon-Levitt",
"Plot": "A thief who steals corporate secrets through dream-sharing technology...",
"imdbRating": "8.8",
"Poster": "https://example.com/inception.jpg"
} Field Reference
data Top-level GraphQL response wrapper containing your query results. errors Present only on query errors; each item has a message field explaining the problem. title Title of the show or video (in Czech). description Short description or synopsis of the content. Implementation Example
const url = "https://api.stream.cz/graphiql";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →An API of Ice And Fire
⭐ Beginner's PickAn API of Ice and Fire is a free, open REST API providing comprehensive data from the Game of Thrones universe, including characters, houses, and books from George R.R.
Bob's Burgers
⚠ UnavailableBob's Burgers provides programmatic access to bob's burgers api via REST API.
Breaking Bad
⚠ UnavailableBreaking Bad provides programmatic access to breaking bad api via REST API.
Breaking Bad Quotes
⭐ Beginner's PickBreaking Bad Quotes is a tiny, free API that returns random quotes from the Breaking Bad TV series.
Catalogopolis
⚠ UnavailableCatalogopolis provides programmatic access to doctor who api via REST API.