Query Cash Out by ID
Queries the details and status of a PIX transaction by transaction_id.
Endpoint
GET /api/external/transactions/:idHeaders
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | String | Yes | ApiKey {client_id}:{client_secret} |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | String | Yes | Transaction ID (transaction_id) |
Example
bash
curl -X GET https://api.owem.com.br/api/external/transactions/PIXOUT20260309a1b2c3d4e5f6 \
-H "Authorization: ApiKey $CLIENT_ID:$CLIENT_SECRET"Success Response -- 200
json
{
"worked": true,
"data": {
"id": "c7f3a8b1-2d4e-4f6a-9c1b-3e5f7a9b1d3e",
"transaction_id": "PIXOUT20260309a1b2c3d4e5f6",
"end_to_end_id": "E37839059202603091530abcdef01",
"external_id": "order-9876",
"type": "pix",
"direction": "outbound",
"status": "completed",
"amount": 300000,
"fee_amount": 350,
"net_amount": 300350,
"description": "Pagamento fornecedor",
"counterparty_name": "Joao Silva",
"recipient_key": "12345678901",
"created_at": "2026-03-09T15:30:00Z",
"completed_at": "2026-03-09T15:30:02Z"
}
}Response Fields
| Field | Type | Description |
|---|---|---|
data.id | String | Internal transaction UUID |
data.transaction_id | String | Unique transaction identifier |
data.end_to_end_id | String | End-to-End identifier in SPI/BACEN |
data.external_id | String | Your system identifier. null if not provided |
data.type | String | Transaction type (pix) |
data.direction | String | outbound (cash-out) or inbound (cash-in) |
data.status | String | Current status (see table below) |
data.amount | Integer | Amount in base units (/ 10,000 for BRL). 300000 = R$ 30.00 |
data.fee_amount | Integer | Fee charged in base units |
data.net_amount | Integer | Net amount in base units |
data.description | String | Description provided at creation |
data.counterparty_name | String | Counterparty name (payer or recipient) |
data.recipient_key | String | Recipient PIX key (outbound only) |
data.created_at | String | Creation date (ISO 8601) |
data.completed_at | String | Completion date (ISO 8601), null if pending |
Transaction Status
| Status | Description |
|---|---|
pending_approval | Awaiting approval (create + approve flow) |
processing | Sent to SPI, awaiting settlement |
completed | Successfully settled |
failed | Rejected by SPI or processing error |
refunded | Returned (fully or partially) |
Error Response -- 404
json
{
"worked": false,
"detail": "Transacao nao encontrada"
}