Cash Out Receipt
Retrieves the receipt of a PIX transaction in a structured format, with data formatted for end-user display.
Endpoint
GET /api/v2/external/transactions/{id}/receiptHeaders
| Header | Type | Required | Description |
|---|---|---|---|
| Authorization | String | Yes | Bearer {access_token} |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | String | Yes | Transaction ID (transaction_id) |
Availability
The receipt is only available for transactions with completed status. Transactions in processing or with failure return error 422.
Example
bash
curl -X GET https://api.owem.com.br/api/v2/external/transactions/PIXOUT20260309a1b2c3d4e5f6/receipt \
-H "Authorization: Bearer $TOKEN"Success Response — 200
json
{
"worked": true,
"receipt": {
"transaction_id": "PIXOUT20260309a1b2c3d4e5f6",
"end_to_end_id": "E37839059202603091530abcdef01",
"authentication_code": "A3B7C9D1E5F2",
"type": "pix",
"direction": "outbound",
"status": "completed",
"amount": 10000,
"amount_formatted": "R$ 100,00",
"fee": 0,
"fee_formatted": "R$ 0,00",
"description": "Supplier payment",
"payer_name": "Empresa Exemplo LTDA",
"payer_document": "12.345.678/0001-99",
"payer_ispb": "37839059",
"payer_institution": "Owem Pay",
"payee_name": "Joao Silva",
"payee_document": "***456789**",
"payee_ispb": "00000000",
"payee_institution": "Destination Bank",
"date_formatted": "09/03/2026 15:30:02",
"institution": {
"name": "Owem Pay",
"cnpj": "37.839.059/0001-88",
"ispb": "37839059"
}
}
}Receipt Fields
| Field | Type | Description |
|---|---|---|
receipt.transaction_id | String | Unique transaction identifier |
receipt.end_to_end_id | String | End-to-End identifier in SPI/BACEN |
receipt.authentication_code | String | Receipt authentication code |
receipt.type | String | Transaction type (pix) |
receipt.direction | String | Direction: outbound (cash-out) |
receipt.status | String | Status: completed |
receipt.amount | Integer | Amount in cents |
receipt.amount_formatted | String | Formatted amount in BRL |
receipt.fee | Integer | Fee in cents |
receipt.fee_formatted | String | Formatted fee in BRL |
receipt.description | String | Transfer description |
receipt.payer_name | String | Payer name |
receipt.payer_document | String | Payer CPF/CNPJ (formatted) |
receipt.payer_ispb | String | Payer institution ISPB |
receipt.payer_institution | String | Payer institution name |
receipt.payee_name | String | Payee name |
receipt.payee_document | String | Payee CPF/CNPJ (masked) |
receipt.payee_ispb | String | Payee institution ISPB |
receipt.payee_institution | String | Payee institution name |
receipt.date_formatted | String | Settlement date/time (DD/MM/YYYY HH:mm:ss) |
receipt.institution | Object | Issuing institution data |
receipt.institution.name | String | Institution name |
receipt.institution.cnpj | String | Formatted CNPJ |
receipt.institution.ispb | String | BACEN ISPB code |
Error Response — 404
json
{
"worked": false,
"detail": "Transaction not found"
}Error Response — 422
json
{
"worked": false,
"detail": "Receipt only available for completed transactions"
}