Bitycle Business
English
  • English
  • Turkish
  1. CEX Aggregator(Buy&Sell)
Bitycle Business
English
  • English
  • Turkish
  • Getting started
  • Bitycle Widget
    • introduction
    • demo
    • widgets
      • Advance Chart
      • Full Chart
      • Overview Chart
      • Fear & Greed
      • Technical Analysis
      • Mini Chart
      • Trends
      • Compare
      • Treemap
      • Ticker
      • Digest(AI)
      • News
      • Info
  • Bitycle Lab
    • introduction
    • Wallet as a Service(WaaS)
      • Introduction
      • Request wallet (temporary)
      • Request wallet (permanent)
      • Callback new payment
      • Inquiry payment with trxRefId
      • Inquiry payment without trxRefId
      • withdraw service
      • Buy Energy on TRON Network
    • Blockchain Indexer
      • introduction
      • Blockchain List
      • Contract Info
      • Get Balances
    • Security&Privacy
      • introduction
      • Check Blocked Wallets
      • Add to watch list
      • Get watch list
      • Delete from watch list
      • Get address label
      • Get address information
    • Node as a Service(NaaS)
      • introduction
    • Tokenization
      • introduction
    • Decentralized Storage(IPFS)
      • introduction
    • Hyperledger Services
      • introduction
  • Bitycle Cap
    • introduction
    • Coins
      • introduction
      • Coin List
      • Coin Info
      • Coin Price
      • coin exchange listings
    • Markets
      • introduction
      • Market Price
      • Markets Price
      • Markets List
      • Market Info
      • market sparklines
    • exchanges
      • introduction
      • CEX Aggregator(Buy&Sell)
        • introduction
        • get tradable markets
          GET
        • get tradable markets price
          GET
        • send otc order
          POST
        • get orders
          GET
        • get balances
          GET
      • Exchanges List
        GET
      • Exchange Info
        GET
      • Exchange Coins Listing
        GET
      • Exchange Markets Listing
        GET
  1. CEX Aggregator(Buy&Sell)

send otc order

POST
/api/exchange/fund_order

Price Range Setting#

The price at which a trade is executed is the real-time price on the Bitycle server, which may slightly differ from the price seen by the user.
If desired, you can prevent trades with significant price discrepancies by specifying a price and an acceptable percentage difference between the observed price and the actual trading price. To do this, these two parameters must be set when submitting an order:
shown_price: Observed price
tolerance_pct: Acceptable percentage difference

Applied Buy and Sell Price#

The applied price for buying and selling is calculated by multiplying the market’s real-time price by the buy or sell price factor. To view the applicable factors, use this endpoint:
/api/exchange/tradable_market

Order Quantity#

The quantity for buy and sell orders should be set as follows:
buy: quote_amount
sell: base_amount
To check the minimum and maximum volume for each trade, use this endpoint:
/api/exchange/tradable_market

Request

Header Params

Body Params application/json

Examples

Responses

🟢200success
application/json
Body

🟠422errors
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.bitycle.com/api/exchange/fund_order' \
--header 'Authorization: Bearer xxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "market": "BTCIRT",
    "side": "buy",
    "shown_price": "9010005001.000",
    "tolerance_pct": "0.5",
    "quote_amount": "70000",
    "client_id": "o-1"
}'
Response Response Example
200 - Success
{
    "status": "success",
    "message": "",
    "data": {
        "id": 8,
        "market": "BTCIRT",
        "quote_amount": "54679.000000000000000",
        "base_amount": "0.000006000000000",
        "price": "9113230000.000000000000000",
        "side": "buy",
        "state": "done",
        "created_at": "2025-05-21T19:24:04.086422+03:30",
        "client_id": "o-1"
    }
}
Modified at 2025-09-21 08:13:35
Previous
get tradable markets price
Next
get orders
Built with