> ## 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/instntmny-local/transactions/status/{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/instntmny-local/transactions/status/{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:
                  zeepay_id:
                    type: integer
                    example: 23456
                    description: Message indicating successful transaction
                  reference:
                    type: string
                    description: Transaction reference
                    example: '23453452'
                  status:
                    type: integer
                    example: Sucess
                    description: The status
                  code:
                    type: number
                    example: 200
                    description: Static response code indicating the status
                  message:
                    type: string
                    example: Transaction Processed Successfully
                    description: This is a response message from the third party
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````