For the complete documentation index, see llms.txt. This page is also available as Markdown.

Withdraw crypto

Withdraw USDT settlements from your wallet on Localramp.

Withdraw USDT settlements from your wallet on Localramp.

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

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

The request takes this as the body

{
    "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:

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

Last updated