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

# Fetch transaction

> Track the status of any Global Payout transaction using its transaction ID.



## OpenAPI

````yaml get /v1/global-payout/transactions/{transactionId}
openapi: 3.0.1
info:
  description: ''
  title: Vendor API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.nomba.com
  - description: Sandbox
    url: https://sandbox.nomba.com
security: []
tags:
  - name: Authenticate
  - name: Accounts
  - name: Virtual Accounts
  - name: Online Checkout
  - name: Charge
  - name: Transfers
  - name: Direct Debits
  - name: Terminals
  - name: Transactions
  - name: Airtime and Data Vending
  - name: Electricity Vending
  - name: CableTV Subscription
  - name: Betting Vending
paths:
  /v1/global-payout/transactions/{transactionId}:
    get:
      description: >-
        Track the status of any Global Payout transaction using its transaction
        ID.
      operationId: Fetch Global Payout Transaction
      parameters:
        - description: Bearer token for authentication.
          in: header
          name: Authorization
          schema:
            type: string
            example: Bearer <token>
          required: true
        - description: The parent accountId of the business.
          in: header
          name: accountId
          schema:
            type: string
            example: 890022ce-bae0-45c1-9b9d-ee7872e6ca27
          required: true
        - name: transactionId
          in: path
          required: true
          description: The wtTransactionId returned when the transfer was authorized.
          schema:
            type: string
            example: 01kj9ssfwqd4a97jhdx65gmyqy
      responses:
        '200':
          description: Transaction retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: '00'
                  description:
                    type: string
                    example: Successful
                  data:
                    type: object
                    properties:
                      transactionId:
                        type: string
                        example: 01kj9ssfwqd4a97jhdx65gmyqy
                      status:
                        type: string
                        example: PROCESSING
                        enum:
                          - PROCESSING
                          - COMPLETED
                          - FAILED
                          - PENDING
                      coreStatus:
                        type: string
                        example: PAYMENT_SUCCESSFUL
                      type:
                        type: string
                        example: TRANSFER
                      createdAt:
                        type: string
                        example: '2026-03-13T09:15:57.161946'

````