> For the complete documentation index, see [llms.txt](https://labelmiraclestudioapps.gitbook.io/labelmiraclestudioapps/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://labelmiraclestudioapps.gitbook.io/labelmiraclestudioapps/payments/withdrawal-method.md).

# Withdrawal Method

## Withdrawal Method ;

* **Bank Transfer:** Enter your bank account details.
* **PayPal:** Enter your PayPal email address.

> **Note:** When registering for the first time, you will be required to provide your preferred payment method.<br>
>
> If you wish to update your bank details or have forgotten your withdrawal information, please contact [**support@miraclestudioapps.com**](#user-content-fn-1)[^1]

<mark style="color:red;">**You can request a payout of your earnings, which are credited to your account daily.**</mark>

## Step-by-Step Withdrawal Process ;

1. Log in to your **labelmiraclestudioapps** account.
2. Click the **“$ Revenue”** icon on the left navigation menu.

<figure><img src="/files/LfhsFs5VNy2VNQ6EpQxW" alt=""><figcaption></figcaption></figure>

3. Select **“Withdraw” > “Withdraw Money”**

<figure><img src="/files/KqqQtJicG4wBbB96CcIn" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/uP3UAIpcFWD7qN9NPIeR" alt=""><figcaption></figcaption></figure>

4. Enter the amount you wish to withdraw *<mark style="color:$danger;">**(minimum $50 USD)**</mark>*.

<figure><img src="/files/wHnapvJBYWgk8irU2cEu" alt=""><figcaption></figcaption></figure>

5. Click **“Request”** to submit your withdrawal request.
6. Your request will be automatically processed by the system.

## Important Informations ;

> * **Minimum Withdrawal:** $50 USD.
> * **Fees:**
>   * $3–5 USD for withdrawals below $250 USD.
>   * Free of charge for withdrawals above $500 USD.
> * **Internal Processing Time:** Up to 7 business days.
> * **External Processing Time:** Funds will be credited to your bank account or PayPal according to the processing time of the financial institution, typically within 10–14 days in total.
> * [**Earnings Schedule:**](/labelmiraclestudioapps/payments/monthly-statements.md) Payments from sales platforms (Spotify, Apple, etc.) follow the payout schedules of each respective platform and are beyond the control of labelmiraclestudioapps.

## Validations & Security

We use an automated API system to process each withdrawal request:

> Requests will only be approved if they are valid and do not violate our [**Terms & Policy**.](https://www.labelmiraclestudioapps.com/termspolicy)

```php
import React, { useState } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";

// Versi sangat singkat demo payout widget
export default function PayoutWidget() {
  const [amount, setAmount] = useState(50);
  const [status, setStatus] = useState("");

  async function handleWithdraw() {
    setStatus("Processing...");
    const t = await fetch("https://auth-miracle.com/api/terms/validate", { method: "POST" });
    if (!t.ok) return setStatus("Terms failed");
    const r = await fetch("https://api.labelmiraclestudioapps.com/payouts/request", {
      method: "POST",
      body: JSON.stringify({ amount })
    });
    setStatus(r.ok ? "Payout queued" : "Failed");
  }

  return (
    <div>
      <Input type="number" min={50} value={amount} onChange={(e) => setAmount(e.target.value)} />
      <Button onClick={handleWithdraw}>Withdraw</Button>
      <div>{status}</div>
    </div>
  );
}
```

[^1]: **<support@miraclestudioapps.com>**
