API Documentation

For using Findexx api you need to include token_key parameter in header while sending request.
token_key: You can get it from your profile page


1. Buy Price

GET

/api/buy_price?token={token_name}
{token_name}: Click here to access the list

Sample Request:

$ curl https://www.findexx.net/api/buy_price?token=S39

In Headers set "token_key"

Sample Response:

  • {
  • "success" : true,
  • "buy_price" : 0.20020088
  • }

2. Sell Price

GET

/api/sell_price?token={token_name}
{token_name}: Click here to access the list

Sample Request:

$ curl https://www.findexx.net/api/sell_price?token=S39

In Headers set "token_key"

Sample Response:

  • {
  • "success" : true,
  • "sell_price" : 0.19870958
  • }

TOKEN LIST

S.N. Token Name Full Name
1 1INCH 1INCH NETWORK
2 AAVE AAVE
3 ADA CARDANO
4 ALICE MYNEIGHBOURALICE
5 ANKR ANKR
6 ATA AUTOMATA NETWORK
7 ATOM COSMOS
8 AVA TRAVALA.COM
9 AVAX AVALANCHE
10 AXS AXIE INFINITY
11 BAND BAND PROTOCOL
12 BCH BITCOIN CASH
13 BEL BELLA PROTOCOL
14 BNB BINANCE COIN
15 BTC BITCOIN
16 BTCX BTCX
17 C98 COIN98
18 CAKE PANCAKESWAP
19 CELR CELER NETWORK
20 COMP COMPOUND
21 CTSI CARTESI
22 DODO DODO
23 DOGE DOGECOIN
24 DOT POLKADOT
25 DSL DS LEGENDS PTE. LTD.
26 DUSK DUSK NETWROK
27 EGLD ELROND
28 ELF AELF
29 EOS EOS
30 ETC ETHEREUM CLASSIC
31 ETH ETHEREUM
32 FIL FILECOIN
33 FXS FRAX SHARE
34 INJ INJECTIVE PROTOCOL
35 IOTX IOTEX
36 LINA LINEAR
37 LINK CHAINLINK
38 LIT LITENTRY
39 LTC LITECOIN
40 MATIC POLYGON
41 MBOX MOBOX
42 MOZC MOZ
43 NEAR NEAR PROTOCOL
44 ONT ONTOLOGY
45 S39 S39 TOKEN
46 SFP SAFEPAL
47 SHIB SHIBA INU
48 SOL SOLANA
49 SUPER SUPERFARM
50 SUSHI SUSHISWAP
51 TELEB TELEB
52 TKO TOKO TOKEN
53 TRX TRON
54 TWT TRUST WALLET TOKEN
55 UNI UNISWAP
56 USDSC USDSC
57 WIN WINLINK
58 XRP RIPPLE
59 XTZ TEZOS
60 XVS VENUS
61 ZEC ZCASH
62 ZIL ZILLIQA

3. Ticker

GET

Sample Request:

$ curl https://www.findexx.net/api/ticker_24hr.php?symbol=zec_btc

In Headers set "token_key"

Sample Response:

  • {
  • "symbol" : zec_btc,
  • "ticker" :
  • {
  • "high" : 34161.64,
  • "vol" : 8925.492,
  • "low" : 32659.88,
  • "change" : -2.67,
  • "turnover" : 0.19870958
  • "latest" : 0.19870958
  • },
  • "timestamp" : 2023-11-29 03:13:57.000000
  • }

4. Place Order

POST

Sample Request:

$ curl https://www.findexx.net/api/create_order.php

In Headers set "token_key"

Parameters:
Parameter Type Required Note
symbol string Yes Trading Pair. Such as eth_btc
type string Yes
price number Yes
amount number Yes
sign string Yes
custom_id string No
window string No

Sample Response:

  • {
  • "order_id" : ord123901,
  • }

5. Cancel Order

POST

Sample Request:

$ curl https://www.findexx.net/api/cancel_order.php

In Headers set "token_key"

Parameters:
Parameter Type Required Note
symbol string Yes Trading Pair. Such as eth_btc
sign string Yes
order_id string Yes

Sample Response:

  • {
  • "order_id" : ord123901,
  • }

6. Open Orders

POST

Sample Request:

$ curl https://www.findexx.net/api/orders_info_no_deal.php

In Headers set "token_key"

Parameters:
Parameter Type Required Note
symbol string Yes Trading Pair. Such as eth_btc
sign string Yes
current_page string Yes
page_length string Yes

Sample Response:

  • {
  • "page_length" : 100,
  • "current_page" : 1,
  • "total" : 1,
  • "orders" :[
  • {
  • "status" : 0,
  • "custom_id" : "",
  • "order_id" : ord123901,
  • "price" : 0.015,
  • "amount" : 100,
  • "create_time" : 2023-11-29 03:13:57.000000,
  • "avg_price" : 0.7,
  • "type" : sell,
  • "symbol" : zec_btc,
  • "deal_amount" : 1},
  • }

7. Orderbook

POST

Sample Request:

$ curl https://www.findexx.net/api/depth.php

In Headers set "token_key"

Parameters:
Parameter Type Required Note
symbol string Yes Trading Pair. Such as eth_btc
size integer Yes The count of returned items.(1-60)
Returns:
Parameter Note
asks Depth of asks (Sellers')
bids Depth of bids (Buyers')

Sample Response:

  • {
  • "asks" :[
  • [5370.4, 0.32],
  • [5369.5, 0.28],
  • [5369.24, 0.05],
  • [5368.2, 0.079],
  • [5367.9, 0.023]
  • ],
  • "bids" :[
  • [5370.4, 0.32],
  • [5369.5, 0.28],
  • [5369.24, 0.05],
  • [5368.2, 0.079],
  • [5367.9, 0.023]
  • ]
    }

8. Balances

POST

Sample Request:

$ curl https://www.findexx.net/api/balance_info.php

In Headers set "token_key"

Parameters:
Parameter Type Required Note
sign string Yes signature of the request
Returns:
Parameter Type Required Note
freeze object Yes Frozen balance of the asset
asset object Yes Total balance of the asset
free object Yes Available balance of the account

Sample Response:

  • {
  • "freeze" : {
  • "btc" : 1.0000,
  • "zec" : 0.0000,
  • "cny" : 80000.00,
  • },
  • "asset" : {
  • "net" : 95678.25,
  • },
  • "free" : {
  • "btc" : 1.0000,
  • "zec" : 0.0000,
  • "cny" : 34.00,
  • },
  • }