Assets

Describes the specification of the contracts, mainly the pricing of the contract and its type (vanilla, inverse, or quanto)

Assets

GET https://sapi.finextree.com/api/v0/assets

Response Body

Name
Type
Description

name

string

Full name of cryptocurrency.

integer

Unique ID of cryptocurrency assigned by Unified Cryptoasset ID.

can_withdraw

boolean

Identifies whether withdrawals are enabled or disabled.

can_deposit

boolean

Identifies whether deposits are enabled or disabled.

min_withdraw

decimal

Identifies the single minimum withdrawal amount of a cryptocurrency.

max_withdraw

decimal

Identifies the single maximum withdrawal amount of a cryptocurrency.

maker_fee

decimal

Fees applied when liquidity is added to the order book.

taker_fee

decimal

Fees applied when liquidity is removed from the order book.

contractAddressUrl

string

contractAddress

string

{
    "status":"true",
    "msg":"success",
    "result": {
        "BTC" : {
            "name": "bitcoin",
            "unified_cryptoasset_id": 1,
            "can_withdraw": true,
            "can_deposit": true,
            "min_withdraw": 0,
            "max_withdraw": 0,
            "maker_fee": 0.01,
            "taker_fee": 0.01,
            "contractAddressUrl": "",
            "contractAddress": "",
        }, ...
    {
}

Last updated