curl --request GET \
--url https://api.owem.com.br/v4/i/pix/in/refund/{endToEndId} \
--header 'Authorization: <authorization>'{
"requestId": "a111b222-c333-4d44-8e55-f66677788899",
"success": true,
"size": 1,
"data": {
"endToEndId": "D123456789202512240000000000001",
"status": "succeeded",
"payer": {
"ispb": "12345678",
"personType": "company",
"cpfCnpj": "XX123456000XXX",
"name": "EXAMPLE COMPANY LTD",
"agency": "0001",
"accountType": "checking",
"accountNumber": "123456789012"
},
"receiver": {
"ispb": "87654321",
"personType": "person",
"cpfCnpj": "XXX123456XX",
"name": "JOHN DOE",
"agency": "0001",
"accountType": "savings",
"accountNumber": "300543881811"
},
"updatedAt": 1766523045000,
"updatedDate": "2025-12-24"
}
}
Returns the current status of an already initiated PIX IN refund. Check if the refund was processed successfully.
curl --request GET \
--url https://api.owem.com.br/v4/i/pix/in/refund/{endToEndId} \
--header 'Authorization: <authorization>'{
"requestId": "a111b222-c333-4d44-8e55-f66677788899",
"success": true,
"size": 1,
"data": {
"endToEndId": "D123456789202512240000000000001",
"status": "succeeded",
"payer": {
"ispb": "12345678",
"personType": "company",
"cpfCnpj": "XX123456000XXX",
"name": "EXAMPLE COMPANY LTD",
"agency": "0001",
"accountType": "checking",
"accountNumber": "123456789012"
},
"receiver": {
"ispb": "87654321",
"personType": "person",
"cpfCnpj": "XXX123456XX",
"name": "JOHN DOE",
"agency": "0001",
"accountType": "savings",
"accountNumber": "300543881811"
},
"updatedAt": 1766523045000,
"updatedDate": "2025-12-24"
}
}
Basic {Base64(API_KEY:API_SECRET)}endToEndId here is the refund E2E, not the original PIX IN. To
relate the two, use the parentEndToEndId field in the Ledger query.Show data
processing, succeeded, or failed{
"requestId": "a111b222-c333-4d44-8e55-f66677788899",
"success": true,
"size": 1,
"data": {
"endToEndId": "D123456789202512240000000000001",
"status": "succeeded",
"payer": {
"ispb": "12345678",
"personType": "company",
"cpfCnpj": "XX123456000XXX",
"name": "EXAMPLE COMPANY LTD",
"agency": "0001",
"accountType": "checking",
"accountNumber": "123456789012"
},
"receiver": {
"ispb": "87654321",
"personType": "person",
"cpfCnpj": "XXX123456XX",
"name": "JOHN DOE",
"agency": "0001",
"accountType": "savings",
"accountNumber": "300543881811"
},
"updatedAt": 1766523045000,
"updatedDate": "2025-12-24"
}
}
| HTTP | Description |
|---|---|
| 200 | Refund found |
| 400 | Malformed endToEndId |
| 401 | Invalid credentials |
| 403 | IP not allowlisted |
| 404 | Refund not found (check if it’s the correct E2E) |
| 429 | Rate limit exceeded |
| 500 | Internal error |
| Status | Description |
|---|---|
processing | Refund registered, in settlement |
succeeded | Refund confirmed |
failed | Refund not completed |
GET /v4/i/ledger/end-to-end/:endToEndId.parentEndToEndId field in Ledger relates the refund E2E with the
original credit E2E.Was this page helpful?