> ## Documentation Index
> Fetch the complete documentation index at: https://developer.cartevo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Wallet Transaction by ID

> Retrieve full details of a single wallet transaction by its ID.

## Overview

`GET /wallet/transactions/{id}` returns full details of one wallet transaction. Use this when you have a transaction ID (from a webhook, list response, or your own logs) and want to inspect it.

For card transactions, use [`GET /cards/{id}/transactions/{transactionId}`](/api-reference/endpoint/get-card-transactions) — that's a separate, card-specific endpoint.

## When to use it

* Look up a single transaction during support.
* Refresh a transaction's status after a webhook.

## Prerequisites

* The transaction must belong to one of your wallets.

## Request

### Headers

| Name            | Required | Description             |
| --------------- | -------- | ----------------------- |
| `Authorization` | Yes      | `Bearer <access_token>` |

### Path parameters

| Name | Type   | Description                   |
| ---- | ------ | ----------------------------- |
| `id` | string | Wallet transaction ID (UUID). |

## Response

### 200 — Success

```json theme={null}
{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "data": {
    "id": "txn_5b7c9d2e4f6a8b1c3d5e7f9a",
    "wallet_id": "w1a2b3c4-d5e6-7890-abcd-ef1234567890",
    "amount": 5000,
    "amount_with_fee": 5050,
    "fee_amount": 50,
    "net_amount": 5000,
    "currency": "XAF",
    "status": "SUCCESS",
    "type": "FUND",
    "category": "WALLET",
    "operator": "mtn",
    "phone_number": "237670000000",
    "reference": "FUND-2026-001",
    "order_id": "AFB-202605091015-XYZ",
    "wallet_balance_before": 120000,
    "wallet_balance_after": 125000,
    "created_at": "2026-05-09T10:15:00.000Z",
    "completed_at": "2026-05-09T10:15:42.000Z"
  }
}
```

For the field reference, see [`GET /wallet/transactions/wallet/{walletId}`](/api-reference/endpoint/get-wallet-transactions#field-reference).

### Error responses

| Status | Trigger                                                   |
| ------ | --------------------------------------------------------- |
| `404`  | Transaction does not exist or belongs to another company. |

## Code examples

```bash cURL theme={null}
curl https://api.cartevo.co/api/v1/wallet/transactions/txn_5b7c9d2e4f6a8b1c3d5e7f9a \
  -H "Authorization: Bearer $TOKEN"
```

## Related

* [`GET /wallet/transactions/wallet/{walletId}`](/api-reference/endpoint/get-wallet-transactions) — list transactions for one wallet.
* [`GET /wallet/transactions`](/api-reference/endpoint/get-wallet-transactions-global) — global list with filters.


## OpenAPI

````yaml GET /wallet/transactions/{id}
openapi: 3.1.0
info:
  title: Cartevo API
  description: Essential endpoints for wallets, transactions, customers and conversion.
  version: 1.0.0
servers:
  - url: https://api.cartevo.co/api/v1
security:
  - bearerAuth: []
paths:
  /wallet/transactions/{id}:
    get:
      summary: Transaction details
      description: Retrieves the details of a single wallet transaction by its ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Detailed information for a single wallet transaction.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWalletTransactionResponse'
        '404':
          description: Transaction not found.
components:
  schemas:
    GetWalletTransactionResponse:
      allOf:
        - $ref: '#/components/schemas/StandardResponse'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/WalletTransaction'
    StandardResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        statusCode:
          type: integer
          example: 200
        message:
          type: string
          example: Data retrieved successfully
    WalletTransaction:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: 7d1cdfa3-9904-4a17-bce5-092554170c0e
        amount:
          type: number
          example: 5000
        amount_with_fee:
          type: number
          example: 5100
        fee_amount:
          type: number
          example: 100
        net_amount:
          type: number
          example: 5000
        currency:
          type: string
          example: XAF
        status:
          type: string
          example: PENDING
        type:
          type: string
          example: FUND
        category:
          type: string
          example: WALLET
        operator:
          type: string
          example: mtn
        phone_number:
          type: string
          example: '650695112'
        reference:
          type: string
          nullable: true
        order_id:
          type: string
          nullable: true
        wallet_balance_before:
          type: number
          example: 10000
        wallet_balance_after:
          type: number
          example: 15000
        created_at:
          type: string
          format: date-time
        completed_at:
          type: string
          format: date-time
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````