> ## 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 mobile money transaction

> Retrieve the status of an initiated mobile money collection.



## OpenAPI

````yaml get /v1/global-collection/mobile-money/transaction/{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-collection/mobile-money/transaction/{transactionId}:
    get:
      description: Retrieve the status of an initiated mobile money collection.
      operationId: Fetch Collection 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 transactionReference returned when the inflow was initiated.
          schema:
            type: string
            example: a822e327-4bcd-40ec-ac61-ed3622eac000
      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: a822e327-4bcd-40ec-ac61-ed3622eac000
                      coreUserId:
                        type: string
                        example: xxxx-xxxx-4402-97c0-6c3824cxxxxx
                      account:
                        type: string
                        example: '0980802918'
                      status:
                        type: string
                        example: APPROVED
                        enum:
                          - PENDING
                          - APPROVED
                          - FAILED
                          - CANCELLED
                      amount:
                        type: number
                        example: 10
                      currency:
                        type: string
                        example: CDF

````