LocalRamp API Documentation
  • Introduction
  • Getting Started
  • Crypto On-ramp
    • Overview
    • Widget Pop-up
    • Full-page checkout
    • Get Limits
    • Get Supported currencies
    • Get Quote
    • List Payment Methods
    • Get Transaction State
  • CRYPTO OFF-RAMP
    • Overview
    • Direct API Sell
      • Instant Sell
      • Get Transaction State
      • Get Limits
      • Get Supported Currencies
      • Get Supported Payment Methods
      • Get Supported Banks
      • Get Crypto Balance
      • Get Rates
      • Verify Bank Account
    • Widget Sell
      • Full-page checkout
      • Widget Pop-up
      • Get Limits
      • Get Quote
      • Get Supported currencies
      • Get Supported Payment Methods
      • Get Transaction State
  • PAYMENTS ON-RAMP
    • Overview
    • Full-page checkout
    • Widget Pop-up
    • White-Label API (Direct Charge)
    • Rates and Fees
    • Get Limits
    • Get Supported Currencies
    • Get Supported Payment Method
    • Withdraw crypto
    • Verify crypto withdrawal
    • Verify transaction
    • Get USDT balance
    • KYC
      • BVN Verification
      • Send OTP
  • Institutional Onramp (>$100k)
    • Overview
    • Initiate transaction
    • Complete transaction
    • Fetch transation
    • Exchange Rate
  • CRYPTO SWAPS
    • Overview
    • Instant Swap
    • Get Transaction State
    • Get Limits
    • Get Supported Currencies
    • Get Rates
  • Webhooks
    • Introduction
    • Verification
    • Events
  • TEST INTEGRATION
    • Simulate Webhooks
      • Fiat received (onramp)
      • Crypto Sent (onramp)
      • Sell completed (offramp)
      • Swap completed
    • Demo transaction
      • Example Completed Buy
      • Example Completed Sell (Bank Account)
      • Example Completed Sell (Mobile Money)
      • Example Completed Swap
Powered by GitBook
On this page
  1. PAYMENTS ON-RAMP

Withdraw crypto

Withdraw USDT settlements from your wallet on Localramp.

This API requires permission from us. However, you can always withdraw from your dashboard.

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

PreviousGet Supported Payment MethodNextVerify crypto withdrawal

Last updated 1 year ago