Madeiramadeira Financeiro API

The Financeiro API from Madeiramadeira — 1 operation(s) for financeiro.

Operations 1

GET /v1/financeiro/lancamento/date_from={date_from}&date_to={date_to}&limit={limit}&offset={offset}&type=7 Consulta lançamento financeiro de saque e seu detalhamento #

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/madeiramadeira-financeiro-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

madeiramadeira-financeiro-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MadeiraMadeira Marketplace Financeiro API
  version: v1
  summary: Seller-facing marketplace API for products, categories, stock, price, shipping tables, orders, financial entries and seller-buyer messaging.
  description: 'Introdução


    Bem-vindo ao Marketplace MadeiraMadeira!'
  contact:
    name: MadeiraMadeira Marketplace
    url: https://www.madeiramadeira.com.br/marketplace
  x-derived-from: Public Postman collection "Marketplace MadeiraMadeira" published by MadeiraMadeira (documenter.getpostman.com/view/3341659/RztmqU19)
servers:
- url: https://marketplace.madeiramadeira.com.br
  description: Producao (production)
- url: https://marketplace-sandbox.madeiramadeira.com.br
  description: Sandbox
security:
- TOKENMM: []
tags:
- name: Financeiro
paths:
  /v1/financeiro/lancamento/date_from={date_from}&date_to={date_to}&limit={limit}&offset={offset}&type=7:
    get:
      operationId: consultaLancamentoFinanceiroDeSaqueESeuDetalhamento
      summary: Consulta lançamento financeiro de saque e seu detalhamento
      tags:
      - Financeiro
      parameters:
      - name: date_from
        in: path
        required: true
        schema:
          type: string
      - name: date_to
        in: path
        required: true
        schema:
          type: string
      - name: limit
        in: path
        required: true
        schema:
          type: string
      - name: offset
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Consulta lançamento financeiro de saque e seu detalhamento
          content:
            application/json:
              example:
                meta:
                  count: 1
                data:
                - id_lancamento_financeiro: '5'
                  id_pedido: null
                  id_seller: '123'
                  id_tipo_lancamento: '7'
                  tipo_lancamento: Saque
                  data: '2022-01-01'
                  descricao: Saque
                  valor: '-999.50'
                  data_previsao_pagamento: '2022-01-05'
                  data_pagamento: '2022-01-05'
                  data_liberacao: '2022-01-05'
                  detalhamento: '[{"data": "2021-01-01", "valor": "-0.50", "descricao": "Comissão", "id_pedido": "1", "pedido_pai": "1", "pedido_filho": "2", "data_liberacao": "2021-01-01", "id_tipo_lancamento": "3", "descricao_lancamento": null, "id_lancamento_financeiro": "1"}, {"data": "2021-01-01", "valor": "1000.00", "descricao": "Venda", "id_pedido": "1", "pedido_pai": "1", "pedido_filho": "2", "data_liberacao": "2021-01-01", "id_tipo_lancamento": "2", "descricao_lancamento": null, "id_lancamento_financeiro": "2"}]'
                  status: Repassado
                  ind_fatura_valida: '0'
                errors: []
        '400':
          description: Erro no JSON enviado (verificar estrutura e enviar novamente)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Ausencia de um dos tokens no header ou token nao existe
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Token revogado ou invalido
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Erro interno de servidor
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - TOKENMM: []
components:
  schemas:
    Error:
      type: object
      properties:
        meta:
          type: object
          properties:
            count:
              type: integer
        errors:
          type: object
          properties:
            detail:
              type: string
      example:
        meta:
          count: 0
        errors:
          detail: Token not found
  securitySchemes:
    TOKENMM:
      type: apiKey
      in: header
      name: TOKENMM
      description: Seller token issued in the Portal Marketplace under Administracao > Integracao. Bound to the seller account; requires a completed registration with signed Terms and Conditions.
    BearerJWT:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT issued by the Mensageria auth endpoint (POST /v1/mensageria/auth/generate-token) via Keycloak, exchanged for an MMTOKEN. Used by the Mensageria (messaging) surface.