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

# Fund member wallet

> Generate a link to fund a user's wallet per currency

<ParamField path="id" type="string" required>
  The ID of the member.
</ParamField>

<RequestExample>
  ```json theme={null}
  {
      "amount": 1000,
      "currency": "USD",
      "redirect_url": "https://7402-197-255-30-167.ngrok-free.app/v1/wallet/flutterwave/fund"
  }
  ```
</RequestExample>

<ParamField body="amount" type="integer" required>
  The amount to be funded
</ParamField>

<ParamField path="currency" type="string" required>
  The funding currency
</ParamField>

<ParamField body="redirect_url" type="string" required>
  UR to redirect to after payment
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "message": "Redirect link fetched.",
      "data": {
          "link": "https://checkout-v2.dev-flutterwave.com/v3/hosted/pay/a16a5e2ac24b7097df15"
      }
  }
  ```
</ResponseExample>
