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-geo-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 Geo 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: Geo
paths:
/api/geo:
get:
operationId: geo
summary: País e idioma sugeridos pela borda da Cloudflare para quem está chamando
description: 'Devolve: { country, detected, language, language_detected, source, api }'
security: []
responses:
'200':
description: '{ country, detected, language, language_detected, source, api }'
content:
application/json:
schema:
$ref: '#/components/schemas/Geo'
tags:
- Geo
components:
schemas:
Geo:
type: object
properties:
country:
type: string
description: País a usar; cai em `BR` quando a borda não informa.
detected:
type: string
description: O que a borda realmente detectou; `null` se nada.
nullable: true
language:
type: string
description: Idioma a usar; cai em `por` sem detecção.
language_detected:
type: string
description: Idioma realmente detectado.
nullable: true
source:
type: string
description: '`cf` quando veio da borda, `fallback` quando é o padrão.'
api:
type: string
description: URL absoluta desta rota.
required:
- country
- detected
- language
- language_detected
- source
- api
description: País e idioma sugeridos pela borda da Cloudflare para quem está chamando.
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: ipt_… (guest) ou iptk_… (API key)