Grade Tags API

The Tags API from Grade — 1 operation(s) for tags.

Operations 1

GET /api/tags Tags das estações de rádio tocáveis (vocabulário livre do Radio Browser), com a… #

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-tags-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-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Grade Tags 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: Tags
paths:
  /api/tags:
    get:
      operationId: list_tags
      summary: Tags das estações de rádio tocáveis (vocabulário livre do Radio Browser), com a…
      description: 'Devolve: { items[{id,name,count}] }'
      security: []
      parameters:
      - name: country
        in: query
        required: false
        schema:
          type: string
        description: Restringe às estações de um país, ISO 3166-1 alpha-2.
        example: BR
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 40
        description: Quantas tags devolver (teto 100).
      responses:
        '200':
          description: '{ items[{id,name,count}] }'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListaTag'
      tags:
      - Tags
components:
  schemas:
    Tag:
      type: object
      properties:
        id:
          type: string
          description: A tag como está na fonte, em minúsculas (ex. `mpb`).
        name:
          type: string
          description: O mesmo texto, para exibir.
        count:
          type: integer
          description: Estações tocáveis com esta tag no recorte pedido.
      required:
      - id
      - name
      - count
      description: Tag de estação de rádio, vocabulário livre do Radio Browser, com a contagem no recorte.
    ListaTag:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
          description: Todos os itens; estas rotas não paginam.
      required:
      - items
      description: Coleção pequena e completa — faceta de catálogo, que cabe inteira numa resposta.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ipt_… (guest) ou iptk_… (API key)