Skip to content

Statement

Lists account transactions with pagination and filters.

Endpoint

GET /api/external/statement

Headers

HeaderTypeRequiredDescription
AuthorizationStringYesApiKey {client_id}:{client_secret}

Query Parameters

ParameterTypeRequiredDescriptionDefault
pageIntegerNoPage number1
per_pageIntegerNoItems per page (max 100)20
statusStringNoFilter by status (pending, completed, failed)--
typeStringNoFilter by type (pix, ted, internal)--
date_fromStringNoStart date (format YYYY-MM-DD)--
date_toStringNoEnd date (format YYYY-MM-DD)--

Example

bash
curl -X GET "https://api.owem.com.br/api/external/statement?page=1&per_page=20&status=completed&date_from=2026-03-01&date_to=2026-03-07" \
  -H "Authorization: ApiKey $CLIENT_ID:$CLIENT_SECRET"

Success Response (200)

json
{
  "worked": true,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
      "transaction_id": "7popu57v6us7p6pcicgq12345",
      "end_to_end_id": "E37839059202603071530000001",
      "external_id": "order-9876",
      "type": "pix",
      "status": "completed",
      "amount": 300000,
      "fee_amount": 0,
      "net_amount": 300000,
      "description": "Pedido #1234",
      "direction": "inbound",
      "counterparty_name": "Maria Santos",
      "created_at": "2026-03-07T15:30:00Z",
      "completed_at": "2026-03-07T15:30:02Z"
    },
    {
      "id": "f7e8d9c0-b1a2-4c3d-9e8f-7a6b5c4d3e2f",
      "transaction_id": "PIXOUT20260306x9y8z7w6v5u4",
      "end_to_end_id": "E37839059202603061200000005",
      "external_id": "invoice-4521",
      "type": "pix",
      "status": "completed",
      "amount": 500000,
      "fee_amount": 350,
      "net_amount": 500350,
      "description": "Pagamento fornecedor",
      "direction": "outbound",
      "counterparty_name": "Joao Silva",
      "recipient_key": "12345678901",
      "created_at": "2026-03-06T12:00:00Z",
      "completed_at": "2026-03-06T12:00:03Z"
    }
  ],
  "page": 1,
  "per_page": 20
}
FieldTypeDescription
workedBooleantrue indicates operation success
dataArrayList of transactions
pageIntegerCurrent page
per_pageIntegerItems per page

Transaction fields

FieldTypeDescription
idStringInternal transaction UUID
transaction_idStringPublic transaction identifier
end_to_end_idStringBACEN E2E ID
external_idStringYour system identifier. null if not provided
typeStringType (pix, ted, internal)
statusStringTransaction status
amountIntegerAmount in base units (/ 10,000 for BRL). 300000 = R$ 30.00
fee_amountIntegerFee charged in base units
net_amountIntegerNet amount in base units
descriptionStringTransaction description
directionStringinbound (incoming) or outbound (outgoing)
counterparty_nameStringCounterparty name
recipient_keyStringRecipient PIX key (outbound only)
created_atStringCreation date (ISO 8601)
completed_atStringCompletion date (ISO 8601)

Error Response (401)

json
{
  "error": {
    "status": 401,
    "message": "Missing API key credentials. Use Authorization: ApiKey <client_id>:<client_secret>"
  }
}

Pagination

The maximum per_page limit is 100. To extract large volumes, iterate through pages by incrementing the page parameter until page reaches total_pages.

Owem Pay Instituição de Pagamento — ISPB 37839059