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 ALPACA ALPACA FINANCE
6 ALPHA ALPHA FINANCE LAB
7 ANKR ANKR
8 ATA AUTOMATA NETWORK
9 ATOM COSMOS
10 AVA TRAVALA.COM
11 AVAX AVALANCHE
12 AXS AXIE INFINITY
13 BAKE BAKERY TOKEN
14 BAND BAND PROTOCOL
15 BCH BITCOIN CASH
16 BEL BELLA PROTOCOL
17 BNB BINANCE COIN
18 BTC BITCOIN
19 BTCST BITCOIN STANDARD HAS
20 BTT BITTORRENT
21 C98 COIN98
22 CAKE PANCAKESWAP
23 CELR CELER NETWORK
24 CHESS TRANCHESS
25 COMP COMPOUND
26 CTK CERTIK
27 CTSI CARTESI
28 DODO DODO
29 DOGE DOGECOIN
30 DOT POLKADOT
31 DSL DS LEGENDS PTE. LTD.
32 DUSK DUSK NETWROK
33 EGLD ELROND
34 ELF AELF
35 EOS EOS
36 ETC ETHEREUM CLASSIC
37 ETH ETHEREUM
38 FIL FILECOIN
39 FXS FRAX SHARE
40 HARD HARD PROTOCOL
41 INJ INJECTIVE PROTOCOL
42 IOTX IOTEX
43 KSM KUSAMA
44 LINA LINEAR
45 LINK CHAINLINK
46 LIT LITENTRY
47 LTC LITECOIN
48 MATIC POLYGON
49 MBOX MOBOX
50 MDX MDEX
51 MIOTA IOTA
52 MKR MAKER
53 MOZC MOZ
54 NEAR NEAR PROTOCOL
55 ONT ONTOLOGY
56 ORN ORION PROTOCOL
57 PHA PHALA NETWORK
58 REEF REEF
59 S39 S39 TOKEN
60 SCRT SECRET
61 SFP SAFEPAL
62 SHIB SHIBA INU
63 SOL SOLANA
64 SUPER SUPERFARM
65 SUSHI SUSHISWAP
66 TELEB TELEB
67 TKO TOKO TOKEN
68 TRX TRON
69 TUSD TRUEUSD
70 TWT TRUST WALLET TOKEN
71 UNI UNISWAP
72 USDSC USDSC
73 WIN WINLINK
74 WRX WAZIR
75 XRP RIPPLE
76 XTZ TEZOS
77 XVS VENUS
78 YFI YEARN.FINANCE
79 YFII DFI.MONEY
80 ZEC ZCASH
81 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,
  • },
  • }