# Withdraw crypto

{% hint style="danger" %}
This API requires permission from us. However, you can always withdraw from your dashboard.
{% endhint %}

Withdraw USDT settlements from your wallet on Localramp.&#x20;

To do this, Make a **POST** request to the following endpoint.

{% code overflow="wrap" %}

```url
https://api.localramp.co/v1/wallet/withdraw
```

{% endcode %}

The request takes this as the body

```javascript
{
    "currency": "USDT",
    "address": "0xC637255611b0A70259722c35D419077Da4cACcfF",
    "amount": "100",
    "network": "bsc"
}
```

With the following header

```
x-auth-token: <SECRET_KEY>
```

This withdraws USDT from Localramp to your wallet address on the Binance smart chain.

If the API call is successful, LocalRamp returns the following response:

```javascript
{
    status: "success",
    message: "Withdrawal processing",
    data: { withdrawal_id: "uiu567H" }
}
```
