# Get Fund Transfer Status

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/partner/instant-payout:
    get:
      summary: Get Fund Transfer Status
      deprecated: false
      description: >-

        :::highlight purple 📌

        Check the status of fund transfers for both IMPS and wallet-to-wallet
        transactions, including real-time updates and final outcomes.

        :::
      tags:
        - Wallet/APIs - Wallet/Fund Transfers
      parameters:
        - name: transactionReferenceId
          in: query
          description: ''
          required: false
          example: PT85790603SJ3F
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: partnerId
          in: header
          description: ''
          required: true
          example: CRM338L2H
          schema:
            type: string
        - name: authorization
          in: header
          description: ''
          required: true
          example: Bearer hxtaSWH8zb5XrA71XDrgFu1uO50
          schema:
            type: string
        - name: Cookie
          in: header
          description: ''
          required: true
          example: >-
            _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000;
            JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties: {}
              x-apidog-orders: []
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  amount:
                    type: integer
                  enKashTransactionId:
                    type: string
                  instantPayoutId:
                    type: string
                  payoutMode:
                    type: string
                  paymentDate:
                    type: string
                required:
                  - status
                  - amount
                  - enKashTransactionId
                  - instantPayoutId
                  - payoutMode
                  - paymentDate
              example:
                status: SUCCESS
                amount: 10
                enKashTransactionId: ECT0Z606F796N
                instantPayoutId: IP4VYV2EDYPOMYG
                payoutMode: IMPS
                paymentDate: '2025-08-20T23:52:09'
          headers: {}
          x-apidog-name: OK
      security:
        - bearer: []
      x-apidog-folder: Wallet/APIs - Wallet/Fund Transfers
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-20161646-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
