On Ramps and Off Ramps

Use On ramp and Off ramp integrations to get instant liquidity and witdhrawal.

You can easily pull liquidity or make withdrawals between Orangepill platform and external ramps, wallets and exchanges using Ramp REST API interface.

circle-info

You must have account on target ramps.

Ramp methods

Set authentication data

To use Ramps you must first set authentication data for identity.

circle-info

Consult Supported ramps table to understand which parameters are required to authenticate against specific ramp.

echo 'Store authetication data for ramp Buda'

curl --location --request POST 'https://api.orangepill.cloud/v1/ramps' \
--header 'x-api-key: AXVubzpwQDU1dzByYM==' \
--header 'idempotency-key: 27373fabc392933dffabb' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ramp": "buda",    
    "identity": "639675ab191e9023f356dfa6",
    "authentication": {
        "api_key": "YOUR_API_KEY",
        "secret": "YOUR_SECRET
    },
    "data": {
        "description": "Authentication data for Buda"
    }
}'

In response we get new authentication object.

Supported countries

Use this method to retrieve list of supported countries for this ramp.

circle-info

Identity country must be on this list to be able to interact with a ramp.

In response we get array of supported countries.

Supported assets

Use this method to retrieve list of supported assets for this ramp.

circle-info

Account must be on this list to be able to interact with a ramp.

In response we get array of supported countries.

Deposit from ramp

To get liquidity from Ramp you must provide Orangepll account where you want receive deposit.

circle-info

Account where you want to receive deposit must be of type ramp.

In response we get result of operation.

Withdrawal to ramp

To withdraw amount to Ramp you must provide Orangepll account.

circle-info

Account from which you want to withdraw must be of type ramp.

In response you will get processing withdrawal.

Supported ramps

Ramp
URL parameter
Authentication

Buda.com

buda

api_key: "YOUR_API_KEY",

secret: "YOUR_SECRET"

Last updated