Inovpay-API
  1. Vendas
Inovpay-API
  • Comece Por Aqui
  • Autenticação
    • Gerar Token
      POST
  • Estabelecimentos
    • Criar Estabelecimento
      POST
    • Listar Estabelecimentos
      GET
    • Detalhar Estabelecimento
      GET
    • KYC Estabelecimento
      GET
  • Banking
    • Buscar Saldo
      GET
    • Solicitar Saque
      POST
    • Detalhar Saque
      GET
    • Listar Solicitações de Saque
      GET
  • Vendas
    • Criar Transação Crédito
      POST
    • Criar Transação PIX
      POST
    • Listar Transações
      GET
    • Detalhar Transação
      GET
    • QR Code PIX
      GET
    • Simulate Transações
      POST
  • Vendas Com Split
    • Criar Transação Crédito - Com Split
      POST
    • Criar Transação PIX - Com Split
      POST
    • Detalhar Split
      GET
  • Antifraude
    • Antifraude 3DS
    • Finalizar Transação 3DS
      POST
  • Webhooks
    • Eventos Webhook
  1. Vendas

Simulate Transações

POST
/simulate

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros de Consulta

Parâmetros Bodyapplication/json

Examples

Respostas

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/simulate?establishment_id={{establishment_id}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 30000,
    "interest": "CLIENT"
}'
Response Response Example
{
    "amount": 30000,
    "simulation": {
        "credit": {
            "1x": {
                "total": 30484,
                "installment": 30484
            },
            "2x": {
                "total": 30484,
                "installment": 15242
            },
            "3x": {
                "total": 30484,
                "installment": 10161
            },
            "4x": {
                "total": 30484,
                "installment": 7621
            },
            "5x": {
                "total": 30484,
                "installment": 6097
            },
            "6x": {
                "total": 30484,
                "installment": 5081
            },
            "7x": {
                "total": 30484,
                "installment": 4355
            },
            "8x": {
                "total": 30484,
                "installment": 3811
            },
            "9x": {
                "total": 30484,
                "installment": 3387
            },
            "10x": {
                "total": 30484,
                "installment": 3048
            },
            "11x": {
                "total": 30484,
                "installment": 2771
            },
            "12x": {
                "total": 30484,
                "installment": 2540
            },
            "13x": {
                "total": 30484,
                "installment": 2345
            },
            "14x": {
                "total": 30484,
                "installment": 2178
            },
            "15x": {
                "total": 30484,
                "installment": 2032
            },
            "16x": {
                "total": 30484,
                "installment": 1906
            },
            "17x": {
                "total": 30484,
                "installment": 1793
            },
            "18x": {
                "total": 30484,
                "installment": 1694
            }
        },
        "debit": 30364,
        "pix": 30364
    }
}
Modificado em 2025-10-23 04:08:38
Página anterior
QR Code PIX
Próxima página
Criar Transação Crédito - Com Split
Built with