Bitycle Business
  1. CEX Aggregator(Buy&Sell)
Bitycle Business
  • Getting started
  • Bitycle Lab
    • introduction
    • Wallet as a Service(WaaS)
      • introduction
      • request Wallet(Temporary)
      • request Wallet(Permanent)
      • inquiry payment
    • Blockchain Indexer
      • introduction
      • Blockchain List
      • Contract Info
      • Get Balances
    • Security&Privacy
      • introduction
      • Check USDT Wallets Blocked
      • Get USDT blocked History
    • 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 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)

get orders

GET
/api/exchange/fund_order
دریافت لیست سفارشات
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.bitycle.com/api/exchange/fund_order?page=1' \
--header 'Authorization: Bearer xxx'
Response Response Example
{
    "status": "success",
    "message": "",
    "data": [
        {
            "id": 9,
            "market": "BTCIRT",
            "quote_amount": "5999001.000000000000000",
            "base_amount": "0.000657000000000",
            "price": "9130899341.980000000000000",
            "side": "buy",
            "state": "done",
            "created_at": "2025-05-21T19:33:48.448310+03:30"
        },
        {
            "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"
        }
    ],
    "pagination": {
        "count": 9,
        "num_pages": 1,
        "per_page": 100,
        "page": 1
    }
}

Request

Query Params
page
string 
optional
Default:
1
Example:
1
Header Params
Authorization
string 
optional
Example:
{{cap_token}}

Responses

🟢200success
application/json
Body
status
string 
required
message
string 
required
data
array [object {8}] 
required
id
integer 
required
market
string 
required
quote_amount
string 
required
base_amount
string 
required
price
string 
required
side
string 
required
state
string 
required
created_at
string 
required
pagination
object 
required
count
integer 
required
num_pages
integer 
required
per_page
integer 
required
page
integer 
required
Previous
send otc order
Next
get balances
Built with