Portal (Obsoleted)
Connect your app. Easily buying and selling through our platform.
Portal is a new Satang Pro platform API where you can connect your application to us through your existing OAuth API and let your users and our users be connected. Your application user then could buy or sell through our exchange platform (now only buying cryptocurrency is supported) and get the crypto/fiat back to your application in seconds or up to minutes.
In order for Portal and your application to correctly work together, you will need to provide your OAuth API:
We will use this API (access_token is your application OAuth access token, we will get this automatically after your user has logged in through your OAuth API, coin is an upper-cased standard cryptocurrency unit name) to get your user deposit address. If your path is not /get-deposit-address
please provide us with the info in the contact above.
The returning JSON of the API should be obvious except for the tag
field. This field is for the cryptocurrency with optional tag or memo, such as XRP or XLM. For example:
Estimated Price
GET
https://api.satang.pro/api/estimated-price/?pair&amount&side
Get current estimated price of the pair provided that you want to execute the order with the amount parameter. If side is buy, then the amount refers to the amount of fiat currency you want to pay, if side is sell then the amount refers to the amount of cryptocurrency you want to sell.
Query Parameters
side
string
"buy" or "sell", now only support "buy".
amount
string
Amount as described in the description. Could provide with up to 4 decimal places for cryptocurrency amount (such as "7.5245" or up to 2 decimal places for fiat currency amount (such as "200000.00").
pair
string
Pair name, now only support: "btc_thb", "eth_thb", and "usdt_thb".
Create new Portal order
POST
https://satangcorp.com/api/portal-orders/
Create a new Portal order. This order is an immediate-or-cancel order, meaning if it does not match immediately after execution, if will get cancelled. After the order is matched, the amount matched (minus standard trading and withdrawal fees) will be sent through your. If side is buy, then the amount refers to the amount of fiat currency you want to pay, if side is sell then the amount refers to the amount of cryptocurrency you want to sell.
Headers
Authorization
string
Satang Pro Authorization. Your application will get this value automatically after your application OAuth is whitelisted and your user is logged in using your OAuth.
Request Body
extras
string
A CSRF-like token that will be sent to your application automatically after your user logged in through your OAuth API (in the `extras` field - please refer to our integration guide which will be sent from the contact above).
price
string
The price you want to execute for this order. You should get this value from /api/estimated-price/?pair&amount&side API above.
pair
string
Pair name, now only support: "btc_thb", "eth_thb", and "usdt_thb".
side
string
"buy" or "sell", now only support "buy".
amount
string
Amount as described in the description. Could provide with up to 4 decimal places for cryptocurrency amount (such as "7.5245" or up to 2 decimal places for fiat currency amount (such as "200000.00").
Last updated
Was this helpful?