# 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" }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.localramp.co/payments-on-ramp/withdraw-crypto.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
