Grade Contact API

The Contact API from Grade — 1 operation(s) for contact.

Operations 1

POST /api/contact Contato e projetos de produtores: humano usa Turnstile; agente paga $0.10 por… #

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-contact-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-contact-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Grade Contact 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: Contact
paths:
  /api/contact:
    post:
      operationId: contact
      summary: 'Contato e projetos de produtores: humano usa Turnstile; agente paga $0.10 por…'
      description: 'Projetos de produtores: consulte GET /api/producers e use contact.message_template na mensagem. O primeiro envio de agente sai sem espera, após pagamento; depois o backoff é 60s dobrando até 1 hora (`Retry-After`). O valor paga somente o envio do contato, não o serviço de transmissão.

        Devolve: { ok }'
      security: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Como chamar quem escreveu.
                email:
                  type: string
                  description: Para onde responder.
                message:
                  type: string
                  description: O que você quer dizer.
                form_ts:
                  type: integer
                  description: 'Início da composição, em milissegundos Unix: entre 2 segundos e 12 horas atrás, obrigatório também para agentes.'
                cf_turnstile_response:
                  type: string
                  description: Token Turnstile do formulário humano; ausente segue pelo pagamento de agente.
              required:
              - name
              - email
              - message
              - form_ts
            example:
              name: …
              email: a@example.com
              message: …
              form_ts: 0
      responses:
        '200':
          description: '{ ok }'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Ok'
        '400':
          description: Campo obrigatório faltando.
        '402':
          description: 'Cota estourada. A resposta traz `accepts[]` (x402, USDC na Base): pague e repita a mesma chamada com `X-PAYMENT`.'
        '403':
          description: Verificação Turnstile inválida.
        '429':
          description: 'Backoff de agente: espere o `Retry-After`.'
        '502':
          description: O provedor não aceitou o envio do e-mail; tente novamente mais tarde.
        '503':
          description: Envio indisponível por configuração de e-mail incompleta.
      tags:
      - Contact
components:
  schemas:
    Ok:
      type: object
      properties:
        ok:
          type: boolean
          description: Sempre `true` — a falha vem como status 4xx/5xx, não como `ok:false`.
      required:
      - ok
      description: Confirmação de escrita que não tem corpo próprio a devolver.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ipt_… (guest) ou iptk_… (API key)