NovusBank
  1. INVOICES
NovusBank
  • INICIO
    • Primeiros Passos com o NovusBank
    • Guia de Criação de Conta e Conformidade
    • Autenticação e Segurança
    • Webhooks
    • 3DS e Tokenização de Cartões
  • INVOICES
    • Webhooks - PIX-IN
    • Criação de Invoices
      POST
    • Buscar Transações
      GET
    • Criar Reembolso
      POST
    • Ativar 3DS (Active 3DS)
      POST
  • PAYOUTS
    • Webhooks - PIX-OUT
    • Criar Payout / Solicitar Saque
      POST
    • Buscar Saques
      GET
  • INVOICES PUBLIC
  • COMPANY
    • Informações da Empresa
      GET
  1. INVOICES

Buscar Transações

GET
/api/v2/invoices/{id}
Este endpoint permite buscar informações de transações associadas a invoices existentes. Pode ser usado para consultar o status de pagamentos, valores, cliente e outros detalhes relacionados a cada transação.

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 Caminho

Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢200Sucesso
application/json
Body

🟠401Auth Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.banconovus.com/api/v2/invoices/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "method": "string",
  "product_fisical": "string",
  "ip_payer": "string",
  "total_price_cents": 0,
  "postback_url": "string",
  "payer": {
    "name": "string",
    "cpf_cnpj": "string",
    "email": "string",
    "phone": "string",
    "address_zip": "string",
    "address_line": "string",
    "address_number": "string",
    "address_complement": "string",
    "address_city": "string",
    "address_state": "string"
  },
  "card": {
    "token": "string",
    "installment": 0,
    "number": "string",
    "first_name": "string",
    "last_name": "string",
    "month": "string",
    "year": "string",
    "security_code": "string",
    "cavv": "string",
    "xid": "string",
    "eci": "string",
    "version": "string",
    "referenceid": "string"
  },
  "items": [
    {
      "name": "string",
      "description": "string",
      "quantity": 0,
      "unit_price": 0
    }
  ]
}'
Response Response Example
200 - New Example
{
	"data": {
		"client": {
			"cpf_cnpj": "43914401800",
			"email": "test.user+pay001@example.com",
			"id": 8,
			"name": "Marina Oliveira",
			"phone": "11985123456"
		},
		"created_at": "2025-11-07T13:25:07.762499-03:00",
		"end_to_end_id": "E31872495202511071625AveNaPpjGOA",
		"external_id": null,
		"installments": 1,
		"invoice_id": "f67c4b91-c72d-42f8-8597-5968482f5644",
		"is_pix": true,
		"items": [
			{
				"ID": 24277,
				"InvoiceID": 24277,
				"Title": "Camiseta Aurora",
				"Description": "Camiseta Aurora tamanho M",
				"Quantity": 2,
				"UnitPrice": 1000,
				"Tangible": false,
				"ExternalRef": null
			}
		],
		"order_code": "TX1762532707HYPER1000775119800",
		"payer": {
			"cpf": "57546964000157",
			"end_to_end_id": "E31872495202511071625AveNaPpjGOA",
			"name": "CARTHERO BRASIL INSTITUICAO DE PAGAMENTO LTDA"
		},
		"qr_code_pix": "00020101021226940014br.gov.bcb.pix2572qrcode.hyperwalletip.com.br/dynamic/7bdb64b9-db71-423d-b002-5f2dcbf215b55204000053039865802BR5915TECNOLABRY LTDA6009Sao Paulo62070503***63041E2F",
		"status": "paid",
		"total_cents": 1000,
		"updated_at": "2025-11-07T13:25:33.799162-03:00"
	},
	"message": "Invoice encontrado"
}
Modificado em 2025-11-07 16:39:39
Página anterior
Criação de Invoices
Próxima página
Criar Reembolso
Built with