
Latest News
Description
Plugin for getting the latest news, include breaking news and local news
Details
https://www.freetv-app.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "MixerBox FreecableTV",
"name_for_model": "MixerBox_FreecableTV",
"description_for_human": "Watch free ad-supported TV shows, series, live channels, movies, news & sports from across the web!",
"description_for_model": "MixerBox FreecableTV provides users with various TV program and movie information. Users simply need to input their desired movie genres (including comedy, drama, thriller, musical, period drama, documentary, science fiction, suspense, romance, mystery, crime, adventure, horror, fantasy, etc.) or program categories (such as series, talk shows, movies, anime, variety shows, sports events, music, entertainment, etc.) to receive tailored recommendations.\n\nMixerBox FreecableTV assists users in various viewing scenarios and moods in their daily lives. Whether users want to watch a comedy after a breakup or unwind with a talk show after a tiring day at work, they can enjoy the latest program content. Moreover, when users feel bored and are unsure of what to watch, they can discover suitable programs based on the most popular or highly viewed content.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://freetv-app.com/.well-known/openapi.json",
"is_user_authenticated": false
},
"logo_url": "https://static.mixerbox.com/chatai/chatgpt-plugin/tv_logo.png",
"contact_email": "freetvapp.question@gmail.com",
"legal_info_url": "https://www.freetv-app.com"
}
https://freetv-app.com/.well-known/openapi.json
{
"openapi": "3.0.1",
"info": {
"title": "MixerBox FreecableTV",
"description": "The plugin allows users to find the TV shows and movies they want to watch, and all sources are free.",
"version": "v1"
},
"servers": [
{
"url": "https://api.freetv-app.com"
}
],
"paths": {
"/services?funcs=GetShowsForChatGPT&mobile=0": {
"get": {
"operationId": "getShows",
"summary": "Get the latest or trending TV shows for a specific country.",
"description": "Get a variety of shows based on user-provided parameters, featuring recommended popular content or categorized content.",
"parameters": [
{
"in": "query",
"name": "country",
"schema": {
"type": "string",
"enum": [
"tw",
"us",
"jp"
]
},
"description": "Specify the country of shows by country code. Currently supported countries are: tw (Taiwan), us (United States) and jp (Japanese)"
},
{
"in": "query",
"name": "category",
"schema": {
"type": "string",
"enum": [
"latest",
"trending",
"drama",
"horror",
"sci-fi",
"thriller",
"kids",
"action",
"comedy",
"western",
"animation",
"crime",
"documentary",
"sports",
"reality",
"variety"
]
},
"description": "The category of the show. Specify \"all\" if no specific category is needed. Notice that each country support different set of categories. For country 'tw', only 'latest' and 'trending' is supported. For country 'jp', supported categories are: 'trending', 'latest', 'drama', 'kids'. 'animation', 'documentary', 'sports', 'variety', 'others'. For country 'us', supported categories are: 'latest', 'trending', 'drama', 'horror', 'sci-fi', 'thriller', 'kids', 'action', 'comedy', 'western'."
},
{
"in": "query",
"name": "offset",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 0."
},
{
"in": "query",
"name": "limit",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 20."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShowsItemResponse"
}
}
}
}
}
}
},
"/services?funcs=GetMoviesForChatGPT&mobile=0": {
"get": {
"operationId": "getMovies",
"summary": "Get the latest or trending movies for a specific country.",
"description": "Get a variety of movies based on user-provided parameters, featuring recommended popular content or content categorized by scenarios.",
"parameters": [
{
"in": "query",
"name": "country",
"schema": {
"type": "string",
"enum": [
"us"
]
},
"description": "Specify the country of movies by country code. Currently only support country: us (United States)"
},
{
"in": "query",
"name": "category",
"schema": {
"type": "string",
"enum": [
"latest",
"trending",
"drama",
"horror",
"sci-fi",
"thriller",
"kids",
"action",
"comedy",
"western"
]
},
"description": "The category of the movie. Use \"latest\" or \"trending\" if no specific category is needed"
},
{
"in": "query",
"name": "offset",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 0."
},
{
"in": "query",
"name": "limit",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 20."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MoviesItemResponse"
}
}
}
}
}
}
},
"/services?funcs=GetChannelsForChatGPT&mobile=0": {
"get": {
"operationId": "getChannels",
"summary": "Get specific type of channels, including news channels, sports channels and live channels.",
"description": "Users can access specific channel content other than shows and movies.",
"parameters": [
{
"in": "query",
"name": "country",
"schema": {
"type": "string",
"enum": [
"tw",
"us",
"jp"
]
},
"description": "Specify the country of channels by country code. Currently supported countries are: tw (Taiwan), us (United States) and jp (Japanese)"
},
{
"in": "query",
"name": "category",
"schema": {
"type": "string",
"enum": [
"news",
"sports",
"live",
"politics",
"business",
"review"
]
},
"description": "The category of the channels. Each country support different set of categories. Here is the list for reference. For country 'us' and 'jp', supported categories are: 'news', 'live', 'sports'. For country 'tw', supported categories are: 'news', 'sports', 'live', 'politics', 'business', 'review'"
},
{
"in": "query",
"name": "offset",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 0."
},
{
"in": "query",
"name": "limit",
"schema": {
"type": "integer"
},
"description": "Parameter for pagination. The default value is 20."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ChannelsItemResponse"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"ChannelsItemResponse": {
"required": [
"GetChannelsForChatGPT"
],
"type": "object",
"properties": {
"GetChannelsForChatGPT": {
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Result Of Channel Item List",
"description": "Result of channel item list.",
"items": {
"$ref": "#/components/schemas/ChannelItem"
}
},
"rules": {
"type": "array",
"title": "The array of rules which recommend gpt to follow.",
"description": "The array of rules which recommend gpt to follow.",
"items": {
"type": "string"
}
}
}
}
}
},
"ShowsItemResponse": {
"required": [
"GetShowsForChatGPT"
],
"type": "object",
"properties": {
"GetShowsForChatGPT": {
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Result Of Show Item List",
"description": "Result of show item list",
"items": {
"$ref": "#/components/schemas/ChannelItem"
}
},
"rules": {
"type": "array",
"title": "The array of rules which recommend gpt to follow.",
"description": "The array of rules which recommend gpt to follow.",
"items": {
"type": "string"
}
}
}
}
}
},
"MoviesItemResponse": {
"required": [
"GetMoviesForChatGPT"
],
"type": "object",
"properties": {
"GetMoviesForChatGPT": {
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Result Of Movie Item List",
"description": "Result of movie item list.",
"items": {
"$ref": "#/components/schemas/ChannelItem"
}
},
"rules": {
"type": "array",
"title": "The array of rules which recommend gpt to follow.",
"description": "The array of rules which recommend gpt to follow.",
"items": {
"type": "string"
}
}
}
}
}
},
"ChannelItem": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Channel Title"
},
"subTitle": {
"type": "string",
"title": "Channel SubTitle"
},
"ref": {
"type": "string",
"title": "Channel Reference",
"description": "The ref of a channel, could be a random string or a valid http url."
},
"thumbnail": {
"type": "string",
"title": "Channel Thumbnail"
},
"description": {
"type": "string",
"title": "Channel Description"
},
"videos": {
"type": "array",
"title": "Videos of Channel",
"description": "The inner videos of the channel. For example, 'Show' type channel could have many episodes as series, and these episodes will be put in this field. Notice that sometimes the array could be empty, in this case one can provide 'Channel Reference' to lead the user to the website for watching content.",
"items": {
"$ref": "#/components/schemas/VideoItem"
}
}
}
},
"VideoItem": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Video Title"
},
"subTitle": {
"type": "string",
"title": "Video SubTitle"
},
"ref": {
"type": "string",
"title": "Video Reference",
"description": "The url that link to the video."
},
"thumbnail": {
"type": "string",
"title": "Video Thumbnail"
}
}
}
}
}
}
Discover other plugins from the news category

BizToc
Search BizToc for business & finance news.
0 Comments

Medium
Plugin for accessing, browsing and extracting Medium content.
0 Comments

PandIA Actualité IA
Recevoir les dernières actualités et guides sur l'IA en français
0 Comments

Man of Many
Discover the latest in products, culture and style from Man of Many. Ask for the latest news and headlines.
0 Comments
UK Latest News
Get the latest news stories from the UK's top news outlets including BBC News, Sky News, The Independent, and others.
0 Comments

TechPulse
Get top/new/ask/show/job stories from HackerNews.
0 Comments

Italy Latest News
Get the most recent news from Italy.
0 Comments

Penrose Analyst
Search global news and research papers. Summarize Arxiv.org links. Ask me for the latest news!
0 Comments

YourTango Articles
Explore YourTango Articles.
0 Comments

World News
Summarize news headlines. You can ask for the latest news from various sources around the world.
0 Comments

QuakePH
Stay updated with the latest earthquakes in the Philippines.
0 Comments
Market Sentiment and News
Gets market news from Marketaux API. Get news about markets, large companies, industries, countries.
0 Comments

MixerBox News
Get the latest news with ease! Search and browse updates on finance, sports, technologies and more!
0 Comments

NewsBreak
Learn about the most popular local or national news in the United States.
0 Comments

MediaReady
Identify sources and experts for journalists.
0 Comments

AI News Roundup
Get Today's AI News Headlines As A Clickable Link Roundup!
0 Comments

NewsPilot
Breaking global news in brief, 15000 news sources from worldwide.
0 Comments

Welt NewsVerse Plugin
Stay informed with the latest news from welt.de.
0 Comments

Trendeer - Digital Newspaper Plugin
Plugin for getting content that you typically expect in a digital newspaper such as local/international news, Lottery results, daily horoscopes (european and chinese), cooking recipes, inspirational quotes, cinema and tv schedules, Job searches, daily cartoons, travel destinations, and financial insights across stock, bonds, commodities, cypto, and global markets
0 Comments

Ask VG
Search through VG's content archive.
0 Comments