WEEX交易所API文檔 | WEEX Exchange API Docs

WEEX Trade API v1

Contents

This API allows to trade on the exchange and receive information about the account.

To use this API, you need to create an API key. An API key can be created in your Profile in the API Keys section. After creating an API key you’ll receive a key and a secret. Note that the Secret can be received only during the first hour after the creation of the Key. API key information is used for authentication.

All requests to Trade API come from the following URL: https://weex.nz/tapi

The method name is sent via the POST-parameter method. All method parameters are sent via the POST-parameters. All server responses are received in the JSON format. Each request needs an authentication. You can find out more on authentication in the relevant section of this documentation.

In the case of successful request, the response will be of the following type:

{
  "success": 1,
  "return": {
    # result
  }
}

Response in the case of error:

{
  "success": 0,
  "error": "<error>"
}

In the case of error you may also receive a response not in the JSON format. It usually happens if API limits are exceeded or in the case of unknown errors.


Authentication

Authentication is made by sending the following HTTP headers:
Key — API key. API key examples: 46G9R9D6-WJ77XOIP-XH9HH5VQ-A3XN3YOZ-8T1R8I8T

API keys are created in the Profile in the API keys section.

Sign — Signature. POST-parameters (?nonce=1&param0=val0), signed with a Secret key using HMAC-SHA512

For successful authentication you need to send a POST-parameter nonce with incremental numeric value for each request.

Example of using nonce values:

1 request: nonce=1
2 request: nonce=2
3 request: nonce=10
4 request: nonce=10 — an error will be displayed, because nonce is equal to the previous request
5 request: nonce=11
6 request: nonce=9 — an error will be displayed, because nonce is smaller than the nonce value in the API key

Minimum nonce value – 1, maximum – 4294967294. To reset the nonce value you need to create a new key.


Methods

getInfo

Returns information about the user’s current balance, API-key privileges, the number of open orders and Server Time. To use this method you need a privilege of the key info.
Response is cached for 60 seconds.

Parameters:
None.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=getInfo&nonce=$NONCE"

Response example:

{
  "success": 1,
  "return": {
    "funds": {
      "usd": 325,
      "btc": 23.998,
      "ltc": 0
       # etc
    },
    "rights": {
      "info": 1,
      "trade": 0,
      "withdraw": 0
    },
    "transaction_count": 0,
    "open_orders": 1,
    "server_time": 1342123547
  }
}

funds: Your account balance available for trading. Doesn’t include funds on your open orders.
rights: The privileges of the current API key. At this time the privilege to withdraw is not used anywhere.
transaction_count: Deprecated, is equal to 0.
open_orders: The number of your open orders.
server_time: Server time (MSK).


Trade

The basic method that can be used for creating orders and trading on the exchange. To use this method you need an API key privilege to trade.

You can only create limit orders using this method, but you can emulate market orders using rate parameters. E.g. using rate=0.1 you can sell at the best market price. Each pair has a different limit on the minimum/maximum amounts, the minimum amount and the number of digits after the decimal point. All limitations can be obtained using the info method in PublicAPI v3.

Parameters:

ParameterDescriptionAssumes value
pairpair“currency_currency”, for example: “btc_usd”
typeorder side“buy” or “sell”
ratethe rate at which you need to buy/sellnumerical, for example “1.4”
modeorder type“market” or “limit” (limit by default)
amountthe amount you need to buy / sell (required if order type is limit)numerical, for example “7566.351”

You can get the list of pairs using the info method in PublicAPI v3.

NONCE="123456" # Next API-key nonce
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=Trade&nonce=$NONCE&pair=btc_usd&type=sell&rate=7566.351&amount=1.4"

Response example:

{
  "success": 1,
  "return": {
    "received": 0.5,
    "remains": 0,
    "order_id": 0,
    "funds": {
      "usd": 325,
      "btc": 2.498,
      "ltc": 0,
      # etc
    }
  }
}

received: The amount of currency bought/sold.
remains: The remaining amount of currency to be bought/sold (and the initial order amount).
order_id: Is equal to 0 if the request was fully “matched” by the opposite orders, otherwise the ID of the executed order will be returned.
funds: Balance after the request.


ActiveOrders

Returns the list of your active orders. To use this method you need a privilege of the info key.

If the order disappears from the list, it was either executed or canceled.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
pairpair“currency_currency”, for example: “btc_usd”all pairs

You can get the list of pairs using the info method in PublicAPI v3.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=ActiveOrders&nonce=$NONCE&pair=btc_usd"

Response example:

{
  "success": 1,
  "return": {
    "343152": {
      "pair": "btc_usd",
      "type": "sell",
      "amount": 12.345,
      "rate": 485,
      "timestamp_created": 1342448420,
      "status": 0
    }
    # etc
  }
}

Array key: Order ID.
pair: The pair on which the order was created.
type: Order type, buy/sell.
amount: The amount of currency to be bought/sold.
rate: Sell/Buy price.
timestamp_created: The time when the order was created.
status: Deprecated, is always equal to 0.


OrderInfo

Returns the information on particular order. To use this method you need a privilege of the info key.

Parameters:

ParameterDescriptionAssumes value
order_idorder IDnumerical, for example “343152”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=OrderInfo&nonce=$NONCE&order_id=343152"

Response example:

{
  "success": 1,
  "return": {
    "343152": {
      "pair": "btc_usd",
      "type": "sell",
      "start_amount": 13.345,
      "amount": 12.345,
      "rate": 485,
      "timestamp_created": 1342448420,
      "status": 0
    }
  }
}

Array key: Order ID.
pair: The pair on which the order was created.
type: Order type, buy/sell.
start_amount: The initial amount at the time of order creation.
amount: The remaining amount of currency to be bought/sold.
rate: Sell/Buy price.
timestamp_created: The time when the order was created.
status: 0 – active, 1 – executed order, 2 – canceled, 3 – canceled, but was partially executed.


CancelOrder

This method is used for order cancellation. To use this method you need a privilege of the trade key.

Parameters:

ParameterDescriptionAssumes value
order_idorder IDnumerical, for example “343154”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CancelOrder&nonce=$NONCE&order_id=343154"

Response example:

{
  "success": 1,
  "return": {
    "order_id": 343154,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

order_id: The ID of canceled order.
funds: Balance upon request.


CancelOrders

This method is used for order/orders cancellation. To cancel more than one order, list them with a comma in the order_id parameter. For example: “1300,1301” To use this method you need a privilege of the trade key.

Parameters:

ParameterDescriptionAssumes value
order_idorder ID or order IDs separated by commasnumerical, for example “1300,1400”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CancelOrders&nonce=$NONCE&order_id=1300,1301"

Response example:

{
  "success": 1,
  "return": {
    "cancel_result": {
      1300: {
        "success": 1
      },
      1301: {
        "sucess": 0,
        "error": "invalid status"
      }
    },
    "funds": {
      "btc": 24.998,
      "usd": 325,
      "ltc": 0,
      # etc
    }
  }
}

cancel_result: Order cancel result.
funds: Balance upon request.


TradeHistory

Returns trade history. To use this method you need a privilege of the info key.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
fromtrade ID, from which the display startsnumerical0
countthe number of trades for displaynumerical1000
from_idtrade ID, from which the display startsnumerical0
end_idtrade ID on which the display endsnumerical
ordersortingASC or DESCDESC
sincethe time to start the displayUNIX time0
endthe time to end the displayUNIX time
pairpair to be displayed“currency_currency” for example: “btc_usd”all pairs

When using parameters since or end, the order parameter automatically assumes the value ASC. When using the since parameter the maximum time that can displayed is 1 week.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=TradeHistory&nonce=$NONCE&pair=btc_usd"

Response example:

{
  "success": 1,
  "return": {
    "166830": {
      "pair": "btc_usd",
      "type": "sell",
      "amount": 1,
      "rate": 450,
      "order_id": 343148,
      "is_your_order": 1,
      "timestamp": 1342445793
    }
  }
}

Array keys: Trade ID.
pair: The pair on which the trade was executed.
type: Trade type, buy/sell.
amount: The amount of currency was bought/sold.
rate: Sell/Buy price.
order_id: Order ID.
is_your_order: Is equal to 1 if order_id is your order, otherwise is equal to 0.
timestamp: Trade execution time.


TransHistory

Returns the history of transactions. To use this method you need a privilege of the info key.

Optional Parameters:

ParameterDescriptionAssumes valueStandard value
fromtransaction ID, from which the display startsnumerical0
countnumber of transaction to be displayednumerical1000
from_idtransaction ID, from which the display startsnumerical0
end_idtransaction ID on which the display endsnumerical
ordersortingASC или DESCDESC
sincethe time to start the displayUNIX time0
endthe time to end the displayUNIX time

When using the parameters since or end, the order parameter automatically assumes the value ASC.

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=TransHistory&nonce=$NONCE"

Response example:

{
  "success": 1,
  "return": {
    "1081672": {
      "type": 1,
      "amount": 1.00000000,
      "currency": "BTC",
      "desc": "BTC Payment",
      "status": 2,
      "timestamp": 1342448420
    }
  }
}

Array keys: Transaction ID.
type: Transaction type. 1/2 – deposit/withdrawal, 4/5 – credit/debit.
amount: Transaction amount.
currency: Transaction currency.
desc: Transaction description.
status: Transaction status. 0 – canceled/failed, 1 – waiting for acceptance, 2 – successful, 3 – not confirmed.
timestamp: Transaction time.


CoinDepositAddress

This method can be used to retrieve the address for depositing crypto-currency.
To use this method, you need the info key privilege.
At present, this method does not generate new addresses. If you have never deposited in a particular crypto-currency and try to retrieve a deposit address, your request will return an error, because this address has not been generated yet.

Obligatory Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CoinDepositAddress&nonce=$NONCE&coinName=BTC"

Response example:

{
  "success": 1,
  "return": {
    "address": "1BARCQAEjxqp1sKneiFtBVTZzhTHBTYcN5"
  }
}

address: address for deposits.


WithdrawCoin

The method is designed for cryptocurrency withdrawals.

Please note: You need to have the privilege of the Withdraw key to be able to use this method. You can make a request for enabling this privilege by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Withdraw privilege for this key.
When using this method, there will be no additional confirmations of withdrawal. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”
amountwithdrawal amountnumerical
addresswithdrawal address“address”

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=WithdrawCoin&nonce=$NONCE&coinName=BTC&amount=0.31&address=1BARCQAEjxqp1sK...eiFtBVTZzhTHBTYcN5"

Response example:

{
  "success": 1,
  "return": {
    "tId": 37832629,
    "amountSent": 0.009,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

tId: Transaction ID.
amountSent: The amount sent including commission.
funds: Balance after the request.


CreateCoupon

This method allows you to create Coupons.

Please note: In order to use this method, you need the Coupon key privilege. You can make a request to enable it by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Coupon privilege for this key.
You must also provide us the IP-addresses from which you will be accessing the API.
When using this method, there will be no additional confirmations of transactions. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
coinNamecoin name“currency”, for example: “BTC”
amountwithdrawal amountnumerical
receivername of user who is allowed to redeem the codeusername

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=CreateCoupon&nonce=$NONCE&coinName=BTC&amount=0.11&receiver=admin"

Response example:

{
  "success": 1,
  "return": {
    "coupon": "WEEXUSD69AA4BBX1UAZ32BPLKBR0QZTX5AENVNFWNZHNQDZ",
    "transID": 37832629,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

coupon: Generated coupon.
transID: Transaction ID.
funds: Balance after the request.


RedeemCoupon

This method is used to redeem coupons.

Please note: In order to use this method, you need the Coupon key privilege. You can make a request to enable it by submitting a ticket to Support.
You need to create the API key that you are going to use for this method in advance. Please provide the first 8 characters of the key (e.g. HKG82W66) in your ticket to support. We’ll enable the Coupon privilege for this key.
You must also provide us the IP-addresses from which you will be accessing the API.
When using this method, there will be no additional confirmations of transactions. Please note that you are fully responsible for keeping the secret of the API key safe after we have enabled the Withdraw privilege for it.

Parameters:

ParameterDescriptionAssumes value
couponcouponWEEXUSD… (example)

Request example:

SIGN="1382324e3d24e8579787135...f2107ffe61c9b8bb7" # Your API-key sign
KEY="J2UF00BF-OZ8X02EW-F7W37LYM-VCLWIBIU-XQG2HO1W" # Your API-key
NONCE="123456" # Next API-key nonce

curl -X POST \
  "https://weex.nz/tapi"\
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Key: $KEY" \
  -H "Sign: $SIGN" \
  -d "method=RedeemCoupon&nonce=$NONCE&coupon=WEEXUSD...NZHNQDZ"

Response example:

{
  "success": 1,
  "return": {
    "couponAmount": "1",
    "couponCurrency": "USD",
    "transID": 37832629,
    "funds": {
      "usd": 325,
      "btc": 24.998,
      "ltc": 0,
      # etc
    }
  }
}

couponAmount: The amount that has been redeemed.
couponCurrency: The currency of the coupon that has been redeemed.
transID: Transaction ID.
funds: Balance after the request.


WEEX API Libraries

Most of the examples have been created by our users. We are not responsible for their performance and do not provide support for them. You can use them at your own risk.

If you want to see your example here, please create a ticket titled “API example for documentation”.

Pythonhttps://github.com/madmis/weexapi by madmis
C#: https://github.com/Falweek/WeexAPI by Falweek
C#: https://github.com/multiprogramm/WeexAPI by multiprogramm
Excel/VBA: https://github.com/krijnsent/crypto_vba by Koen Rijnsent

Deprecated:

PHP: http://pastebin.com/8fbMCguM
PHP: https://github.com/marinu666/PHP-btce-api
Python: http://pastebin.com/ec11hxcP
Python: https://github.com/alanmcintyre/btce-api
Python: https://github.com/t0pep0/btc-e.api.python
Python: https://github.com/acidvegas/btc-e
Java: http://pastebin.com/jyd9tACF
Java: https://github.com/alexandersjn/btc_e_assist_api
Java: https://github.com/Yocairo/BTCE_API_Lib
C#: https://github.com/DmT021/BtceApi
С# .NET: https://bitbucket.org/EldarG/btceapi
C++/CLI: http://pastebin.com/YvxmCRL9
C++11: https://github.com/halcyonx/btc-e-API
VB.NET: http://pastebin.com/JmJZSsd7
Objective-C: https://github.com/backmeupplz/BTCEBot
Ruby: https://github.com/cgore/ruby-btce
Swift: https://bitbucket.org/MaximSh/yawzabot-btce-bot
Go: https://github.com/alexpantyukhin/btceapi
Node.js: https://www.npmjs.com/package/btc-e3

WEEX唯客官網:www.weex.com

你也可以在 CMCCoingecko非小號X(Twitter)YoutubeFacebookLinkedin微博 上關注我们,第一时间获取更多投資導航和福利活動!了解平台幣 WXT 最新資訊請訪問 WXT專區

在線諮詢:

WEEX唯客中文交流群:https://t.me/weex_group

WEEX唯客英文交流群:https://t.me/Weex_Global

讚! (0)
Previous 2025年 4月 28日 下午11:49
Next 2025年 5月 7日 下午2:37

相關推薦

  • WEEX即將上線Aster Inu (ASTERINU)!

    尊敬的WEEX用戶: Aster Inu(ASTERINU) 更多信息: 社區驅動的meme 代幣受到Aster 無縫跨鏈連接使命的啟發,將加密實用性與meme 文化融為一體。 官網 X賬號 交易手續費

    1小時前
    4
  • 好友紅包功能上線公告

    1. 功能說明 為了增強您與好友之間的互動樂趣,WEEX隆重推出【好友紅包】功能!您現在可以輕鬆地使用數字貨幣向好友發送祝福,無論是慶祝佳節、表達感謝還是分享喜悅,都變得前所未有的便捷和有趣。 功能亮點 雙模式選擇:支持普通紅包和隨機紅包,滿足不同場景需求。 操作簡單:幾步點擊即可創建紅包,分享至聊天或朋友圈。 即時到賬:好友領取後,資金即時存入資金賬戶,安全高效。 趣味互動:用加密貨幣玩轉傳統習俗,提升社區活躍度。 2. 發紅包 進入紅包功能頁面(https://www.weex.com/zh-CN/redpacket/sendGifts) 發送紅包-點擊創建按鈕開始創建紅包 領取紅包-輸入紅包口令(支持一鍵粘貼)領取紅包 發放操作 1.選擇紅包類型 標準紅包-每人領取金額相同且由自己設置 隨機紅包-固定紅包金額,每人領取隨機金額 2.輸入紅包個數 3.輸入金額 標準紅包-輸入單人領取金額 隨機紅包-輸入紅包總金額 4.選擇幣種(默認USDT) 請注意可用餘額顯示 個性化設置 1.輸入你的祝福語(支持自定義) 2.選擇紅包封面(支持自定義) 3.高級設置(可選) 僅受邀人-您邀請的用戶可領取紅包 僅新用戶-24小時內新註冊用戶可領取紅包 *可同時選擇-您邀請的且註冊時間在24小時內的用戶可領取紅包 最終步驟:創建紅包按鈕 輸入資金密碼 (首次會提醒設置,保護您的資金安全) 紅包創建完成 可將圖片下載或截圖發送給好友,好友使用weex APP掃描二維碼即可領取 複製口令告訴好友,好友進入weex APP進入紅包功能頁面輸入口令即可領取 *紅包有效期24小時 3.領取紅包 · Weex APP 掃描二維碼直接領取紅包 · 進入紅包功能頁面- 領取欄輸入得到的或複制的口令- 領取紅包 規則說明 發紅包 資金支持: 您可以使用現貨賬戶中的任意幣種發放紅包,發放時相應資金將被凍結。 紅包類型: 可創建隨機紅包、普通紅包,並分享二維碼/口令給好友。 領紅包 好友領取: 好友通過您的分享二維碼或輸入口令即可領取,資金將實時存入其資金賬戶。 新用戶須知: 新用戶需完成註冊後才能領取紅包。 重要規則 有效期: 每個紅包自創建起24小時內有效,逾期未領完的資金將自動退回您的賬戶。 領取限制: · 每個紅包每人僅限領取一次。 · 為保障安全,系統會檢測異常領取行為,並可能對領取金額和次數進行限制。 溫馨提示 紅包的發放、領取均無需支付任何手續費。 請勿向不熟悉的用戶發送紅包,謹防詐騙。 本規則最終解釋權歸平台所有,如有疑問,請聯繫客服。 FAQ 平台紅包功能使用指南 Q1: 什麼是平台紅包? A: 平台紅包是允許您將賬戶中的數字貨幣作為禮物發送給好友,或領取他人發放的紅包禮物的功能。好友領取後,資金將直接進入他的平台賬戶。 Q2: 發紅包時,資金被凍結了是什麼意思?會影響交易嗎? A: 凍結是為了確保紅包金額有效。發放後,相應的資金會從您的可用餘額中扣除並鎖定。這部分被凍結的資金將無法用於交易或其他操作,直到紅包被領取完畢過期退回後,才會解凍回到您的可用餘額中。 Q3: 我可以撤回已經發出去的紅包嗎? A: 非常抱歉,紅包一旦生成並分享,無法手動撤回。如果您發錯了,可以等待24小時有效期過後,未領取的資金會自動退回到您的賬戶。 Q4: 我掃描紅包二維碼後,為什麼無法領取? A:無法領取可能有以下幾種原因,請您核對: 紅包已領完: 紅包金額已被全部領取。 您已領取過: 每個紅包每人只能領一次。 不符合發放者設置: 發放者可能設置了“僅限新用戶”或“僅限其邀請的好友”等條件。 紅包已過期: 紅包超過24小時有效期。 網絡或App問題: 請檢查網絡連接,或嘗試重啟App。 Q5: 領取到的資金在哪裡查看? A: 資金在領取成功後會實時存入您的資金賬戶。您可以在【資產】-【現貨賬戶】中查看相應幣種的餘額變化。 Q6: 發放或領取紅包有什麼限制嗎? A: 為了保障資金安全,平台設置了單紅包金額上限和單用戶每日發放次數上限。具體限額請以頁面提示為準。 Q7: 紅包退回後,資金退到哪裡了?為什麼沒看到? A: 過期退回的資金,會以原幣種的形式解凍,並返還至您的【現貨賬戶】 中。請注意查看現貨賬戶的餘額,而不是資金賬戶。 Q8: 紅包鏈接或口令洩露了怎麼辦? A: 紅包發放無定向性。下次發放時,建議使用“高級設置”功能限定領取範圍(如僅限受邀好友)。本次紅包只能等待其24小時後自動過期退還。

    3小時前
    3
  • Hana Network(HANA)現已上線WEEX!

    尊敬的WEEX用戶: 充值:2025年9月29日20:00(UTC 8)正式開放 交易:2025年9月26日20:00(UTC 8)正式開放 提現:即將開放 立即交易:HANA/USDT Hana Network(HANA) 更多信息: Hana Network 由一支日本團隊於2022 年12 月推出,旨在構建新的界面,引導用戶進入加密貨幣領域,包括直播和交易平台。該項目的願景是為亞洲、非洲和其他地區的散戶用戶提供超休閒加密貨幣的入口,並服務於大型交易者。 2023 年,Hana Network 入選幣安孵化器孵化計劃,並已籌集總計900 萬美元的資金。該團隊正在分階段推出應用,逐步推出Hanafuda(一款休閒卡牌遊戲)、Capsule Shot(NFT)和Dipsy(直播)。 官網 X賬號 交易手續費

    5小時前
    9
  • WEEX合約將上線YURU U本位合約- 9/27 10:00(UTC 8)

    很高興的宣布,WEEX合約將於2025年9月27日10:00(UTC 8)上線YURU U本位合約。 合約以美元穩定幣為計價單位,支持多種槓桿,以滿足不同投資者的需求。您可以通過網頁、APP進行交易,歡迎您體驗! 新增加的幣對包括: YURU/USDT 其他信息: WEEX 手續費 風險提示: 數字資產合約交易是高風險的創新產品,需要專業知識。請您理性判斷,審慎做出交易決策。 WEEX唯客團隊 註冊WEEX唯客 >>> 在Twitter上關注WEEX >>> 加入WEEX唯客社群 >>> 更多交易機會 >>> 【收錄平台】: CoinMarketCap | CryptoWisser.com | Coingecko | Coincarp – 感謝您對WEEX 的支持! – 聯絡我們: X | YouTube | Telegram | Medium | Facebook | LinkedIn | Blog 立即註冊WEEX賬戶: https://www.weex.com/register CoinMarketCap | Cryptowisser.com | Coingecko | Coincarp

    6小時前
    11
  • Mira Network(MIRA)現已上線WEEX!

    尊敬的WEEX用戶: 充值:即將開放 交易:2025年9月26日21:00(UTC 8)正式開放 提現:即將開放 立即交易:MIRA/USDT Mira Network(MIRA) 更多信息: Mira 是一個去中心化的驗證網絡,旨在確保AI 輸出的可信度。 Mira 將AI 生成的內容轉化為可驗證的聲明,並在多個AI 模型之間使用區塊鏈共識,從而消除了人工驗證的必要性。這一突破使AI 能夠在醫療保健、金融和法律服務等高風險領域實現自主運行。 Mira 擁有超過100 萬用戶,涵蓋Klok 和Learnrite 等生態系統應用,正在為AI 革命構建至關重要的信任層。 官網 X賬號 交易手續費

    8小時前
    10
  • WEEX WE-Launch – CLT(Chicago Coin) 上線及10,000 USDT空投!

    宣布啟動WE-Launch新一輪項目:CLT(Chicago Coin)。 📅 活動時間:2025-09-26 16:00 (UTC 8) — 2025-09-29 16:00 (UTC 8) 🚀 上線時間: 充值時間:2025-09-28 17:00 (UTC 8) 交易時間:2025-09-29 17:00 (UTC 8) 提現時間:2025-09-30 17:00 (UTC 8) 活動期間,通過參與WXT,您將有機會免費分享 10,000枚USDT代幣 ! 通過WE-Launch提交WXT以賺取USDT。 WXT 投入池 總獎勵:10,000 USDT 最低投入:1,000 WXT 最高投入:500,000 WXT WXT 投入期結束後,系統將計算每個參與用戶的空投獎勵。 實際投入必須滿足每個級別的最低要求,有效投入是根據相應級別的投入倍數計算的。 您的有效投入百分比越大,您在獎勵池中的份額就越大。 預計獎勵= 當前用戶的有效投入/ 所有用戶的總有效投入* 總獎勵池; 用戶的有效投入= 用戶的實際投入* 相應級別的投入倍數; *投入的WXT 可同時參與多個項目,無需鎖倉,也沒有任何質押要求。 【CLT(Chicago Coin) 簡介】 芝加哥幣(Chicago Coin) 推出CLT 代幣,這是一款基於區塊鏈的解決方案,旨在改變電子競技經濟。 CLT 構建於以太坊網絡,旨在構建一個公平、透明且去中心化的生態系統,連接玩家、開發者和粉絲。 我們的願景是重新定義電子競技的數字所有權,賦予玩家擁有資產的自主權並將其貨幣化,為開發者提供更公平的收入模式,並在社區驅動的經濟體系中創造沉浸式的粉絲體驗。 芝加哥幣致力於持續創新、建立戰略合作夥伴關係和實現可持續發展,確保所有利益相關者的長期價值。 CLT 的推出,不僅僅是為了推出一款代幣,更是為了通過區塊鏈的透明度和包容性來塑造電子競技的未來。 官網 X賬號 條款與條件: 參加WE-Launch活動無需支付任何費用。 活動期間,您賬戶中的WXT無任何限制,可隨時進行交易或提現。 空投快照​​不包含任何被鎖定的WXT。 做市商和項目團隊賬戶不具備參與本次活動的資格。 嚴禁使用惡意手段,包括洗售交易、操縱交易量、創建多個賬戶以謀取利益或偽造KYC信息,以滿足活動資格要求。 WEEX保留對參與者進行資格審查的權利,有權取消參與者的活動資格、暫停發放獎勵,並追回已發放至賬戶的任何活動獎勵。 WEEX 保留本活動最終解釋權。平台有權根據市場情況調整或終止活動,且無需提前通知用戶。如有任何疑問,請聯繫我們的在線客服。

    10小時前
    11
內容目錄