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

# Get Transaction Status

> Retrieve the status of a transaction using the Zeepay ID.



## OpenAPI

````yaml GET /api/transactions/{zeepay_id}
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://test.digitaltermination.com
  - url: https://business-sandbox.instntmny.com
security: []
paths:
  /api/transactions/{zeepay_id}:
    get:
      summary: Get Status of Transaction
      description: Retrieve the status of a transaction using the Zeepay ID.
      parameters:
        - name: zeepay_id
          in: path
          required: true
          description: The Zeepay ID of the transaction.
          schema:
            type: integer
            format: int64
            example: 123456
      responses:
        '200':
          description: The status of the transaction.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: number
                    example: 200
                    description: Static response code indicating the status
                  data:
                    oneOf:
                      - type: object
                        properties:
                          zeepay_id:
                            type: number
                            example: 60456
                            description: The Zeepay ID of the transaction
                          extr_id:
                            type: string
                            example: cbeay-1234-5678-90ab-cdef12345678
                            description: The external ID
                          sender_first_name:
                            type: string
                            example: Zeepay
                            description: The first name of the sender
                          sender_last_name:
                            type: string
                            example: Ghana
                            description: The last name of the sender
                          sender_country:
                            type: string
                            example: GHA
                            description: The country code of the sender
                          recipient_first_name:
                            type: string
                            example: GODWIN
                            description: The first name of the receiver
                          recipient_last_name:
                            type: string
                            example: HOTTOR
                            description: The last name of the receiver
                          recipient_country:
                            type: string
                            example: GHA
                            description: The country code of the receiver
                          service_type:
                            type: string
                            example: Wallet
                            description: The service type
                          mobile_account:
                            type: number
                            example: 233245519485
                            description: The mobile number of the wallet
                          partner:
                            type: string
                            example: ZEEPAY GHANA LIMITED
                            description: The partner name
                          fees:
                            type: number
                            example: null
                            description: The transaction fees
                          status:
                            type: string
                            example: Success
                            description: The transaction status
                          status_code:
                            type: number
                            example: 200
                            description: The status code
                          status_message:
                            type: string
                            example: Transaction Processed Successfully
                            description: The status message
                          amount_sent:
                            type: number
                            example: 0.1
                            description: The amount sent
                          amount_payout:
                            type: number
                            example: 0.1
                            description: The amount paid out
                          created_at:
                            type: object
                            properties:
                              date:
                                type: string
                                example: '2021-09-01'
                                description: The creation date
                              time:
                                type: string
                                example: '14:09:12'
                                description: The creation time
                              timezone_type:
                                type: integer
                                example: 3
                                description: The timezone type
                          last_updated:
                            type: string
                            example: '2025-01-24 14:09:12'
                            description: The last update timestamp
                          amount_charged:
                            type: number
                            example: 0
                            description: The amount charged
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````