Check Status and Details of a Generated PIX Cash In by Tag

This API retrieves a list of all PIX QR Codes associated with a specific tag. Returns an array of QR Codes with their status, amounts, debtor information, dates, and account details. Useful for querying multiple QR Codes grouped by a common reference.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Query Parameters

ParameterTypeDescriptionRequired
tagStringTag used to group QR Codes (e.g., order number, invoice ID)Yes

Authentication

HeaderTypeDescriptionRequired
AuthorizationStringBearer token for authenticationYes
hmacStringHMAC signature for request authenticationYes

Request Example

GET /v2/finance/status-pix-copy-and-paste/tag?tag=Order%20%2312345
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
hmac: 57373705c83bc5efe41001790c54642e670088c0c87d56bc8f990f2260c7740b...

Response Example

[
  {
    "id": 12345,
    "amount": 100.50,
    "status": "PAID",
    "pix_copy_and_paste": "00020126580014br.gov.bcb.pix0136...",
    "qr_code_url": "https://example.com/qrcode/12345.png",
    "debtor_name": "João da Silva",
    "debtor_document": "12345678900",
    "created_at": "2026-04-25T10:30:00Z",
    "paid_at": "2026-04-25T11:45:00Z",
    "expiration_date": "2026-04-30T23:59:59Z",
    "tag": "Order #12345",
    "account_branch": "0001",
    "account_number": "12345678-9",
    "tax_value": 0.50,
    "end_to_end_id": "E12345678202604251234567890AB12345"
  },
  {
    "id": 12346,
    "amount": 50.00,
    "status": "NEW",
    "pix_copy_and_paste": "00020126580014br.gov.bcb.pix0136...",
    "qr_code_url": "https://example.com/qrcode/12346.png",
    "debtor_name": "Maria Santos",
    "debtor_document": "98765432100",
    "created_at": "2026-04-25T14:20:00Z",
    "paid_at": null,
    "expiration_date": "2026-04-30T23:59:59Z",
    "tag": "Order #12345",
    "account_branch": "0001",
    "account_number": "12345678-9",
    "tax_value": null,
    "end_to_end_id": null
  }
]

Response Fields

Each object in the array contains:

FieldTypeDescription
idIntegerQR Code unique identifier
amountFloatPayment amount
statusStringQR Code status (NEW, PAID, EXPIRED, CHARGEBACK)
pix_copy_and_pasteStringPIX copy and paste code
qr_code_urlStringURL to QR Code image
debtor_nameStringName of the payer
debtor_documentStringCPF/CNPJ of the payer
created_atDateTimeQR Code creation timestamp
paid_atDateTimePayment timestamp (null if not paid)
expiration_dateDateTimeQR Code expiration date
tagStringCustom tag or reference
account_branchStringReceiving account branch/agency
account_numberStringReceiving account number
tax_valueFloatService tax charged (null if not paid)
end_to_end_idStringEndToEndId of the transaction (null if not paid)

Status Values

StatusDescription
NEWQR Code created and waiting for payment
PAIDPayment completed successfully
EXPIREDQR Code expired without payment
CHARGEBACKPayment was refunded/charged back

Error Responses

Status CodeDescription
400Bad request - No QR Codes found with this tag
401Unauthorized - Invalid or missing authentication
500Internal server error

Use Cases

  • Order Management: Query all QR Codes for a specific order
  • Invoice Tracking: Get all QR Codes generated for an invoice
  • Batch Processing: Monitor multiple QR Codes in a payment batch
  • Reconciliation: Match QR Codes with business transactions using custom tags

Notes

  • Returns only QR Codes from your company
  • Results are filtered based on user permissions for associated accounts
  • Empty array is returned if no QR Codes match the tag or user has no access
  • Tags are case-sensitive
  • Only QR Codes with matching tag are included in the response
Query Params
string
required

Tag used to group QR Codes (e.g., order number, invoice ID)

Responses

400

Bad request - No QR Codes found with this tag

401

Unauthorized - Invalid or missing authentication

500

Internal server error

Language
LoadingLoading…
Response
Choose an example:
application/json