1. Transactions
  • Bem vindo
  • Webhook
    • Webhook de TRANSAÇÃO
    • Webhook de Saque
    • Create
      POST
    • Find
      GET
    • Find All
      GET
    • Delete
      DELETE
  • Transactions
    • Pix
      POST
    • BOLETO
      POST
    • CARTÃO
      POST
    • Find All
      GET
    • Find
      GET
    • Find By Metadata
      GET
  • Withdraw
    • Find All
      GET
    • Cash Out
      POST
    • Find By Metadata
      GET
    • Find
      GET
  • Balance
    • Get Balance
      GET
  • Disputes
    • Find All
      GET
    • Find
      GET
    • Seller appeal
      POST
  • Fees
    • Get seller Fees
      GET
  • Check
    GET
  1. Transactions

Find

GET
/transactions/{id}

Requisição

Parâmetros de Caminho

Parâmetros Header

Respostas

🟢200Success
application/json
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/transactions/a3f8fac1-d138-4bff-a348-d103442b386f' \
--header 'x-api-key: sk_c6b0f1703772167d3ac262f4242a2d4e8ca8878bdec44ecb'
Response Response Example
200 - Success
{
    "status": true,
    "data": {
        "id": "022d7383-2b95-4f75-be4b-fbba37ba50ae",
        "amount": 500,
        "customer": {
            "id": "82eb9fdf-06f5-4f9b-9a64-51714d0dfa00",
            "externalRef": null,
            "name": "John Doe",
            "email": "john@example.com",
            "phone": "1234567890",
            "documentType": "CPF",
            "document": "26841949048",
            "createdAt": "2025-06-27T12:03:50.890Z"
        },
        "items": [
            {
                "id": "7a10b701-43e9-47da-9cad-925543e52858",
                "title": "Wireless Mouse",
                "amount": 5999,
                "quantity": 1,
                "tangible": true,
                "externalRef": "item_abc123",
                "transactionId": "022d7383-2b95-4f75-be4b-fbba37ba50ae",
                "createdAt": "2025-06-27T12:03:50.890Z",
                "updatedAt": "2025-06-27T12:03:50.890Z"
            }
        ],
        "method": "CREDIT_CARD",
        "status": "FAILED",
        "boleto": null,
        "card": {
            "id": "e42df45b-61cc-4e9d-939c-b52956cf01c6",
            "number": "",
            "holderName": "",
            "holderDocument": "",
            "expirationMonth": 0,
            "expirationYear": 0,
            "cvv": "",
            "brand": null,
            "createdAt": "2025-06-27T12:03:51.713Z",
            "updatedAt": "2025-06-27T12:03:51.713Z",
            "transactionId": "022d7383-2b95-4f75-be4b-fbba37ba50ae"
        },
        "pix": null,
        "description": null,
        "installments": null,
        "metadata": null,
        "paidAt": null,
        "postbackUrl": null,
        "createdAt": "2025-06-27T12:03:50.890Z"
    }
}
Modificado em 2025-10-22 13:17:40
Página anterior
Find All
Próxima página
Find By Metadata
Built with