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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/gradetv-me-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
openapi: 3.2.0
info:
title: Grade Me 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: Me
paths:
/api/me:
get:
operationId: me
summary: 'A conta da sessão: e-mail, convidado principal e o tamanho da biblioteca'
description: 'Devolve: { user{id,email}, app, guest_token, resources{categories,favorites,history} }'
security:
- bearerAuth: []
responses:
'200':
description: '{ user{id,email}, app, guest_token, resources{categories,favorites,history} }'
content:
application/json:
schema:
type: object
properties:
user:
allOf:
- $ref: '#/components/schemas/Conta'
description: A pessoa dona da sessão.
app:
type: string
description: Nome do produto.
guest_token:
type: string
description: Convidado principal da conta — é o que tem a galeria.
resources:
allOf:
- $ref: '#/components/schemas/Recursos'
description: Quantas pastas, favoritos e canais no histórico existem.
required:
- user
- app
- guest_token
- resources
'401':
description: Sem credencial ou credencial inválida. Veja a auth deste endpoint.
tags:
- Me
components:
schemas:
Conta:
type: object
properties:
id:
type: string
description: ID da conta.
email:
type: string
description: E-mail confirmado por código.
required:
- id
- email
description: A pessoa por trás da sessão.
Recursos:
type: object
properties:
categories:
type: integer
description: Quantas pastas o dono tem.
favorites:
type: integer
description: Quantos canais ele favoritou.
history:
type: integer
description: Quantos canais estão no histórico.
required:
- categories
- favorites
- history
description: O tamanho da biblioteca do dono — para o agente saber o que vai encontrar antes de buscar.
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: ipt_… (guest) ou iptk_… (API key)