For Agents
Find free TV shows, movies, and live channels and surface watchable links inside a chat or recommendation flow.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the MixerBox FreecableTV, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with MixerBox FreecableTV API.
Search the FreecableTV catalogue for free TV shows by keyword
Surface a list of free movies that match a viewer query
List free live TV channels available to stream
Return chat-formatted titles and links suitable for conversational UIs
GET STARTED
Use for: Find free TV shows about cooking, List all free live TV channels available right now, Search for free movies in the action genre, Get a chat-ready list of free comedy series
Not supported: Does not handle paid streaming, account login, or DRM playback — use for surfacing free TV, movie, and channel listings only.
MixerBox FreecableTV exposes a catalogue of free TV shows, movies, and live channels assembled from public sources, intended for chat plugins and recommendation surfaces. The API returns chat-friendly JSON that lists titles, channels, and movies that users can watch for free, with metadata suitable for direct linking. It is open and unauthenticated and was originally distributed as a ChatGPT plugin endpoint.
Filter responses for mobile or desktop rendering using the mobile flag
Patterns agents use MixerBox FreecableTV API for, with concrete tasks.
★ Free TV Recommendation Bot
Build a chat assistant that takes a viewer prompt like 'free crime dramas' and queries GetShowsForChatGPT to surface watchable titles with links. The endpoint returns chat-formatted entries the assistant can render directly without further enrichment. Integration takes minutes because the API is open.
Call GET /services with funcs=GetShowsForChatGPT and a query for crime dramas, return the top five titles with watchable links
Free Movie Finder
Surface a free-movie picker inside a chat flow by calling GetMoviesForChatGPT with a viewer prompt. Each result includes a title and a direct watch link, so the bot can answer in one turn. Useful inside cord-cutting assistants where licensing and authentication concerns prevent paid catalogue use.
Call GET /services with funcs=GetMoviesForChatGPT and a query for action movies and return three watchable links
Live Channel Guide
List currently watchable free live TV channels via GetChannelsForChatGPT for cord-cutting guides and dashboards. Channel entries include direct stream links, suitable for embedding in a TV-guide UI or returning as agent output.
Call GET /services with funcs=GetChannelsForChatGPT and return a list of free live channels with stream URLs
Agent Chat Plugin Replacement
FreecableTV originated as a ChatGPT plugin. Through Jentic, an agent reuses the same endpoints inside any framework, getting a chat-formatted free-TV recommendation in one call. No credentials are required, so the only cost is the search and load time.
Search Jentic for 'find free tv shows', load the schema for GetShowsForChatGPT, and execute with a user-supplied query
3 endpoints — mixerbox freecabletv exposes a catalogue of free tv shows, movies, and live channels assembled from public sources, intended for chat plugins and recommendation surfaces.
METHOD
PATH
DESCRIPTION
/services?funcs=GetShowsForChatGPT&mobile=0
Search free TV shows for a chat assistant
/services?funcs=GetMoviesForChatGPT&mobile=0
Search free movies for a chat assistant
/services?funcs=GetChannelsForChatGPT&mobile=0
List free live TV channels with stream URLs
/services?funcs=GetShowsForChatGPT&mobile=0
Search free TV shows for a chat assistant
/services?funcs=GetMoviesForChatGPT&mobile=0
Search free movies for a chat assistant
/services?funcs=GetChannelsForChatGPT&mobile=0
List free live TV channels with stream URLs
Three things that make agents converge on Jentic-routed access.
Credential isolation
FreecableTV is unauthenticated, so no secrets are vaulted. Jentic still ensures the agent does not see network-level identifiers, keeping calls isolated through MAXsystem.
Intent-based discovery
Agents search Jentic for intents like 'find free tv shows' or 'find free movies' and Jentic returns the matching /services operation with the funcs query parameter pre-described, so the agent calls the right shape on the first try.
Time to first call
Direct integration: a few hours to wire up the chat-plugin URL conventions. Through Jentic: minutes — no auth, no docs to read, just search and execute.
Alternatives and complements available in the Jentic catalogue.
Twitch
Live streaming platform with free creator-driven channels
Pair Twitch with FreecableTV when the agent needs both free TV and live creator streams in the same recommendation
RAWG
Game metadata that pairs with TV and movie discovery for entertainment bots
Use RAWG when the assistant should also recommend games alongside free TV and movies
IGDB
Adjacent entertainment metadata for cross-media recommendations
Add IGDB when the entertainment bot expands into game franchises and adaptations
Specific to using MixerBox FreecableTV API through Jentic.
What authentication does the MixerBox FreecableTV API use?
FreecableTV is unauthenticated. Endpoints under https://api.freetv-app.com are public and return JSON to any caller. Jentic still routes calls through MAXsystem so the agent's network surface stays isolated.
Can I get a list of free live TV channels with the FreecableTV API?
Yes. Call GET /services with funcs=GetChannelsForChatGPT to retrieve a chat-formatted list of free live channels with stream URLs that can be returned directly to the user.
What are the rate limits for the FreecableTV API?
FreecableTV does not publish a fixed rate limit. Treat it as a courtesy-shared service: cache GetShowsForChatGPT and GetMoviesForChatGPT responses for at least a few minutes and back off on any 429 response.
How do I find free movies through Jentic?
Search Jentic for 'find free movies', load the GET /services schema with funcs=GetMoviesForChatGPT, and execute with a query string. The response is chat-ready and can be relayed straight to the user.
Does the FreecableTV API host or stream the videos directly?
No. The API returns links to free public sources rather than hosting the streams itself. Plan playback against the third-party URL, which may change without notice.
Is there a mobile-only mode for the FreecableTV responses?
The /services endpoint accepts a mobile=0 or mobile=1 flag that hints at the rendering target. Set mobile=0 for desktop-style responses and mobile=1 for mobile-friendly payloads when integrating into different surfaces.