Grade F API

The F API from Grade — 3 operation(s) for f.

Operations 3

GET /f/{token}/library.{formato} Feed da biblioteca inteira do dono, no formato pedido pela extensão #
GET /f/{token}/c/{categoria}.{formato} Feed de uma pasta da biblioteca, para assinar só aquele recorte #
GET /f/{token}/c/{categoria}/g/{grupo}.{formato} Feed de uma sub-aba — o recorte mais fino que a galeria oferece #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gradetv-f-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gradetv-f-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Grade F API
  version: dbad45cb
  description: Catálogo IPTV, biblioteca pessoal com feeds e informações para produtores sobre transmissão autorizada sob consulta.
servers:
- url: https://gradetv.net
tags:
- name: F
paths:
  /f/{token}/library.{formato}:
    get:
      operationId: get_f_by_token_library_formato
      summary: Feed da biblioteca inteira do dono, no formato pedido pela extensão
      description: 'É a URL que a pessoa cola no VLC. Não pede credencial: o token no caminho É a credencial, e quem tem o link tem o conteúdo — trate como segredo. As URLs saem prontas em `Biblioteca.feeds`, e cada pasta e sub-aba tem a sua.

        Devolve: `audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.

        Item do YouTube fica fora do M3U e do XSPF (o VLC não toca) e vem no JSON com `kind: "youtube"`.'
      security: []
      parameters:
      - name: token
        in: path
        required: true
        schema:
          type: string
      - name: formato
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: '`audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.'
        '404':
          description: Token de feed desconhecido.
      tags:
      - F
  /f/{token}/c/{categoria}.{formato}:
    get:
      operationId: get_f_by_token_c_by_categoria_formato
      summary: Feed de uma pasta da biblioteca, para assinar só aquele recorte
      description: 'Devolve: `audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.

        Item do YouTube fica fora do M3U e do XSPF (o VLC não toca) e vem no JSON com `kind: "youtube"`.'
      security: []
      parameters:
      - name: token
        in: path
        required: true
        schema:
          type: string
      - name: categoria
        in: path
        required: true
        schema:
          type: string
      - name: formato
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: '`audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.'
        '404':
          description: Token de feed ou pasta desconhecidos.
      tags:
      - F
  /f/{token}/c/{categoria}/g/{grupo}.{formato}:
    get:
      operationId: get_f_by_token_c_by_categoria_g_by_grupo_formato
      summary: Feed de uma sub-aba — o recorte mais fino que a galeria oferece
      description: 'Devolve: `audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.

        Item do YouTube fica fora do M3U e do XSPF (o VLC não toca) e vem no JSON com `kind: "youtube"`.'
      security: []
      parameters:
      - name: token
        in: path
        required: true
        schema:
          type: string
      - name: categoria
        in: path
        required: true
        schema:
          type: string
      - name: grupo
        in: path
        required: true
        schema:
          type: string
      - name: formato
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: '`audio/x-mpegurl` (m3u/m3u8), `application/json` ou `application/xspf+xml`.'
        '404':
          description: Token de feed, pasta ou sub-aba desconhecidos.
      tags:
      - F
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ipt_… (guest) ou iptk_… (API key)