Skip to main content
GET
/
pix
/
v1
/
transactions
/
{transactionID}
Obter Detalhes da Transação
curl --request GET \
  --url https://api.pagou.ai/pix/v1/transactions/{transactionID} \
  --header 'apiKey: <api-key>'
{
  "_id": "012ebd95-2707-4059-acb3-3ae65923f198",
  "businessId": "66da0f5063fd0c54c2f59efe",
  "operation": {
    "type": "PAYMENT",
    "method": "PIX",
    "value": 10.5,
    "provider": "bankprovider",
    "status": "WAITING_PAYMENT",
    "chargeTableID": "66e049c35140728e958a4c77",
    "externalID": null,
    "fee": 0.3,
    "result": 10.2,
    "providerSecondaryId": "012ebd9527074059acb33ae65923f198",
    "info": {
      "finishedTransaction": false,
      "transactionWithError": false
    }
  },
  "negotiator": {
    "fullName": "Full Name",
    "document": "99999999999",
    "clientType": "PF"
  },
  "history": [
    {
      "status": "WAITING_PAYMENT",
      "error": [],
      "createdAt": "2025-02-04T00:10:41.241Z",
      "info": {
        "finishedTransaction": false,
        "transactionWithError": false
      },
      "providerResponse": {
        "success": true,
        "pixCode": "00020126850014br.gov.bcb.pix2563pix.bankprovider.com.br/qr/v3/at/8778c4a0-62f2-4a0f-9c19-a76a90784dbd5204000053039865802BR5925SUA_EMPRESA_TECNOLOGIA6006CUIABA62070503***630428C5",
        "providerSecondaryId": "012ebd9527074059acb33ae65923f198",
        "responseBody": {}
      }
    }
  ],
  "splits": null,
  "createdAt": "2025-02-04T00:10:41.241Z",
  "updatedAt": "2025-02-04T00:10:41.935Z"
}

Authorizations

apiKey
string
header
required

Path Parameters

transactionID
string
required

Unique transaction identifier

Example:

"txn_123456789"

Response

Transaction details retrieved successfully

_id
string<uuid>

Unique transaction identifier

Example:

"012ebd95-2707-4059-acb3-3ae65923f198"

businessId
string

Business account identifier

Example:

"66da0f5063fd0c54c2f59efe"

operation
object
negotiator
object
history
object[]

Transaction status history

splits
object | null

Payment splits configuration (if applicable)

Example:

null

createdAt
string<date-time>

Transaction creation timestamp

Example:

"2025-02-04T00:10:41.241Z"

updatedAt
string<date-time>

Last update timestamp

Example:

"2025-02-04T00:10:41.935Z"

I