For the complete documentation index, see llms.txt. This page is also available as Markdown.

Assets

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

Assets

GET https://sapi.fixt.io/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.

contract_address_url

string

contract_address

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,
            "contract_address_url": "",
            "contract_address": "",
        }, ...
    {
}

Last updated