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

# Get Wallet to Wallet Transfer Status

> The endpoint facilitates requerying transfer requests between emedly wallets.

<ParamField body="transactionReference" type="string" required>
  The source account number for the transfer **Example:** "retw33344556670900"
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "code": "00",
    "success": true,
    "message": "Transaction status retrieved successfully",
    "data": {
      "reference": "SFTest44491711",
      "status": "Success",
      "timestamp": "2025-12-10T11:12:41.072733"
    }
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "code": "401",
    "success": false,
    "message": "x-api-key is missing in the header",
    "data": null
  }
  ```

  ```json 404 Bad Request theme={null}
  {
    "code": "404",
    "success": false,
    "message": "Transaction not found",
    "data": null
  }
  ```

  ```json 500 Internal Server Error theme={null}
  {
    "code": "500",
    "success": false,
    "message": "An unexpected error occurred",
    "data": null
  }
  ```
</ResponseExample>
