Radar CNPJ Credito API

The Credito API from Radar CNPJ — 1 operation(s) for credito.

Operations 2

POST /api/credito Recarrega crédito pré-pago: paga uma vez com x402 e recebe o token que desconta… #
GET /api/credito Saldo e extrato do crédito — as últimas movimentações, sem devolver o token #

Documentation

Specifications

Other Resources

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/radar-cnpj-credito-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

radar-cnpj-credito-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Radar CNPJ Credito API
  version: 2d690e87
  description: radar-cnpj.com — índice GET /api/.
servers:
- url: https://radar-cnpj.com
tags:
- name: Credito
paths:
  /api/credito:
    post:
      operationId: post_api_credito
      summary: 'Recarrega crédito pré-pago: paga uma vez com x402 e recebe o token que desconta…'
      description: 'Devolve: { token, saldo_usd, guarde, usar, saldo_em }'
      parameters:
      - name: usd
        in: query
        required: true
        schema:
          type: integer
        description: 'Pacote: 1, 5, 10 ou 25 dólares.'
      responses:
        '200':
          description: '{ token, saldo_usd, guarde, usar, saldo_em }'
          content:
            application/json:
              schema:
                type: object
                properties:
                  token:
                    type: string
                    description: Token portador do saldo (`cred_…`). Mostrado UMA vez — não há como recuperá-lo.
                  saldo_usd:
                    type: string
                    description: Saldo creditado.
                  guarde:
                    type: string
                    description: Aviso de que o token é o portador do crédito.
                  usar:
                    type: string
                    description: Como apresentar o token nas rotas pagas.
                  saldo_em:
                    type: string
                    description: Onde consultar saldo e extrato.
                required:
                - token
                - saldo_usd
                - guarde
                - usar
                - saldo_em
        '400':
          description: Pacote fora da lista (1, 5, 10 ou 25).
        '402':
          description: Sem pagamento — o corpo traz `accepts[]` do x402.
      tags:
      - Credito
    get:
      operationId: get_api_credito
      summary: Saldo e extrato do crédito — as últimas movimentações, sem devolver o token
      description: 'Devolve: { saldo_micros, saldo_usd, criado_em, movimentos }'
      responses:
        '200':
          description: '{ saldo_micros, saldo_usd, criado_em, movimentos }'
          content:
            application/json:
              schema:
                type: object
                properties:
                  saldo_micros:
                    type: integer
                    description: Saldo em micro-dólares (1e-6 USD).
                  saldo_usd:
                    type: string
                    description: Saldo formatado.
                  criado_em:
                    type: string
                    description: Quando o crédito foi aberto.
                  movimentos:
                    type: array
                    items:
                      type: object
                    description: Entradas e saídas recentes, com produto e recurso.
                required:
                - saldo_micros
                - saldo_usd
                - criado_em
                - movimentos
        '401':
          description: Sem token ou token desconhecido.
      tags:
      - Credito