Balances
Currency Amount
BTC 0.00000000 + -
ETH 0.00000000 + -
USDTerc20 0.00000000 + -
TRX 0.00000000 + -
XRP 0.00000000 + -
DOGE 0.00000000 + -
USDCerc20 0.00000000 + -
USDTtrc20 0.00000000 + -
USDTbep20 0.00000000 + -
USD 0.00000000 + -
RUR 0.00000000 + -
Est. BTC: 0.00000000 BTC
Market
Name Price Ch. Vol. fullname
Name Price Ch. Vol. fullname
YOVI
0.03177640 0%0YobitCoin
ETH0.03047105- 0.4%1839.5Ethereum
ZEC0.00340164- 1.6%814.1Zcash
DASH0.00046963+ 0.6%199.2DASH
LTC0.00079529+ 0.3%181.7Litecoin
ETC0.00011905- 1%83.9EthereumClassic
TRX-BTC
0.00000456+ 4.6%18.7Tron Token
BIG-BTC
0.00547065- 0.9%16.6BIG
SHIB-USDTb
T0.00000580- 3.2%8.4SHIBA INU
YOCHAT-DOGE
D0.00000030 0%4YoChat Token
DOGE-BTC
0.00000133 0%4Dogecoin
ETH-BTC
0.03036130- 0.6%2.2Ethereum
BCHABC0.00011491+ 5.6%2.1BitcoinCashABC
BTC-USDTt
T68473.83- 3.3%1.1Bitcoin
ETH-USDT
T2083.5232962- 3.5%1.1Ethereum
BTC-USDT
T68781.83- 2.8%0.8Bitcoin
XRP-BTC
0.00002032- 0.5%0.7Ripple
BTC-USDTb
T68561.15- 2.9%0.7Bitcoin
DOGE-USDT
T0.09147025- 2.9%0.4Dogecoin
BTCT68510.01- 3%0.4Bitcoin
ETH-USDC
2083.4633914- 3.4%0.3Ethereum
BTC-RUR
R6066622.11- 0.6%0.3Bitcoin
USDT-RUR
R87.84+ 1.6%0.3USDT ERC20
BNB-BTC
0.00917423+ 0.7%0.3BNB BSC
DOGE-ETH
E0.00004383+ 0.4%0.2Dogecoin
ZEC-BTC
0.00338652- 1.3%0.2Zcash
TON-BTC
0.00001834+ 2.9%0.2TON Coin
SHIBA2-BTC
0.00000018 0%0.1Shiba v2 Limited
USDTR87.75+ 1.6%0.1USDT ERC20
DASH-BTC
0.00047059+ 0.6%0.1DASH
ETH-RUR
R184190.57- 1.5%0.1Ethereum
BTCR6001802.52- 2.2%0.1Bitcoin
YOMBA0.00000040+ 5.3%0.1YOMBA
USDT-USDC
1.00302586+ 0.3%0.1USDT ERC20
LIZAR0.00- 5.3%0.1Bitcoin Liza
DOGE-WRUB
5.67703052- 0.6%0.1Dogecoin
NOT-BTC
0.00000001 0%0.1Notcoin
TRX0.00000449+ 2.1%0.1Tron Token
WRUB-RUR
R1.44- 1.3%0.1Wrapped Ruble
YO-BTC
0.00610424+ 0.2%0.1Yo Token ERC20
BTCT71552.19+ 4.6%0.1Bitcoin

API

Introduction

Public API and Trade API are useful device for communicating with the third party software stock exchange.

  • Public API is used to obtain information that does not require access to personal data of the account.
  • Trade API is necessary for creation and cancellation of orders, actual balance information request as well as for obtaining information that requires access to personal data of the account.

Public API

At the present moment Public API is developed in several editions. Programmers are recommended to choose the latest edition for use in their software products.

v2

Public API of the second edition provides the possibility to obtain: depth, fee, ticker, trades (methods).

The link looks like: https://yobit.net/api/2/pair/method name

Only one pair can be stipulated in the link.
Examples for pair ltc_btc:

v3

Major difference between Public API of the third edition from that of the second one is possibility to obtain information on several pairs at one request to the server. The list of the needed pairs is stipulated in hyphenated form.

Server responses are cashed every 2 seconds that is why there is no sense in making requests faster.

Available methods: depth, ticker, trades, info.

The link looks like: https://yobit.net/api/3/method name/pair list
Several pairs can be stipulated without repetitions or only one pair can be stipulated.

Method info has no pair list parameter. The given method can be used for obtaining list of active pairs.

Examples of pair lists ltc_btc-nmc_btc:

Note! If we disable any pair from the list API will throw an error message. To enable the ignoration of such errors GET-parameter is available ignore_invalid.
Example of use: https://yobit.net/api/3/depth/ltc_btc-error_pair?ignore_invalid=1

info

Example of request: https://yobit.net/api/3/info

Example of response:

{
	"server_time":1418654531,
	"pairs":{
		"ltc_btc":{
			"decimal_places":8,
			"min_price":0.00000001,
			"max_price":10000,
			"min_amount":0.0001,
			"hidden":0,
			"fee":0.2
		}
		...
	}
}
  • decimal_places: Quantity of permitted numbers after decimal point
  • min_price: minimal permitted price
  • max_price: maximal permitted price
  • min_amount: minimal permitted buy or sell amount
  • hidden: pair is hidden (0 or 1)
  • fee: pair commission

Hidden pairs are not shown in the list at Stock Exchange home page, but exchange transactions continue.
In case if any pair is disabled it disappears from the list.

ticker

Method provides statistic data for the last 24 hours.

Example of request: https://yobit.net/api/3/ticker/ltc_btc

Example of response:

{
	"ltc_btc":{
		"high":105.41,
		"low":104.67,
		"avg":105.04,
		"vol":43398.22251455,
		"vol_cur":4546.26962359,
		"last":105.11,
		"buy":104.2,
		"sell":105.11,
		"updated":1418654531
	}
	...
}
  • high: maximal price
  • low: minimal price
  • avg: average price
  • vol: traded volume
  • vol_cur: traded volume in currency
  • last: last transaction price
  • buy: buying price
  • sell: selling price
  • updated: last cache upgrade

depth

Method returns information about lists of active orders for selected pairs.

GET-parameter limit stipulates size of withdrawal (on default 150 to 2000 maximum).

Example of request: https://yobit.net/api/3/depth/ltc_btc

Example of response:

{
	"ltc_btc":{
		"asks":[
			[104.67,0.01],
			[104.75,11],
			[104.80,0.523],
			...
		],
		"bids":[
			[104.3,5.368783],
			[104.212,2.57357],
			[103.62,0.43663336],
			[103.61,0.7255672],
			...
		]
	}
	...
}
  • asks: selling orders
  • bids: buying orders

trades

Method returns information about the last transactions of selected pairs.

GET-parameter limit stipulates size of withdrawal (on default 150 to 2000 maximum).

Example of request: https://yobit.net/api/3/trades/ltc_btc

Example of response:

{
	"ltc_btc":[
		{
			"type":"ask",
			"price":104.2,
			"amount":0.101,
			"tid":41234426,
			"timestamp":1418654531
		},
		{
			"type":"bid",
			"price":103.53,
			"amount":1.51414,
			"tid":41234422,
			"timestamp":1418654530
		},
		...
	]
	...
}
  • type: ask - sell, bid - buy
  • price: buying / selling price
  • amount: amount
  • tid: transaction id
  • timestamp: transaction timestamp

Trade API

Trade API is necessary for creation and cancellation of orders, request of active balances as well as for obtaining the information that requires access to account personal data.

To use Trade API it is necessary to create key in corresponding Section.
Key secret is available to see only within one hour after its generation therefore we recommend that you save it just after key generation. Keys and their secrets are used for user authentication.

Address for sending requests to Trade API is https://yobit.net/tapi/

For each request authentication is needed.

All the responses are created by the server in JSON format

Example of server's successful response:

{"success":1,"return":{%answer%}}

Example of error informing response:

{"success":0,"error":"%error%"}

Authentication

Each Trade API request should pass authentication.
Authentication is fulfilled by sending the following HTTP-titles:

Key - API-key, example: FAF816D16FFDFBD1D46EEF5D5B10D8A2

Sign - digital signature, POST-parameters (?param0=val0 & ...& nonce=1) signed by secret key through HMAC-SHA512

Parameter nonce (1 minimum to 2147483646 maximum) in succeeding request should exceed that in the previous one.
To null nonce it is necessary to generate new key.

getInfo

Method returns information about user's balances and priviledges of API-key as well as server time.

Requirements: priviledge of key info

Parameters are absent

Example of response:

{
	"success":1,
	"return":{
		"funds":{
			"ltc":22,
			"nvc":423.998,
			"ppc":10,
			...
		},
		"funds_incl_orders":{
			"ltc":32,
			"nvc":523.998,
			"ppc":20,
			...
		},		
		"rights":{
			"info":1,
			"trade":0,
			"withdraw":0
		},
		"transaction_count":0,
		"open_orders":1,
		"server_time":1418654530
	}
}
  • funds: available account balance (does not include money on open orders)
  • funds_incl_orders: available account balance (include money on open orders)
  • rights: priviledges of key. withdraw is not used (reserved)
  • transaction_count: always 0 (outdated)
  • open_orders: always 0 (outdated)
  • server_time: server time

Trade

Method that allows creating new orders for stock exchange trading

Requirements: priviledges of key info&trade

Parameters:

  • pair: pair (example: ltc_btc)
  • type: transaction type (example: buy or sell)
  • rate: exchange rate for buying or selling (value: numeral)
  • amount: amount needed for buying or selling (value: numeral)

Example of response:

{
	"success":1,
	"return":{
		"received":0.1,
		"remains":0,
		"order_id":12345,
		"funds":{
			"btc":15,
			"ltc":51.82,
			"nvc":0,
			...
		}
	}
}
  • received: amount of currency bought / sold
  • remains: amount of currency to buy / to sell
  • order_id: created order ID
  • funds: funds active after request

ActiveOrders

Method returns list of user's active orders

Requirements: priviledges of key info

Parameters:

  • pair: pair (example: ltc_btc)

Example of response:

{
	"success":1,
	"return":{
		"100025362":{
			"pair":"ltc_btc",
			"type":"sell",
			"amount":21.615,
			"rate":0.258,
			"timestamp_created":1418654530,
			"status":0
		},
		...
	}
}
  • keys of array: order ID (in example: 100025362)
  • pair: pair (example: ltc_btc)
  • type: transaction type (example: buy or sell)
  • amount: remains to buy or to sell
  • rate: price of buying or selling
  • timestamp_created: order creation time
  • status: always 0 (outdated

OrderInfo

Method returns detailed information about the chosen order

Requirements: priviledges of key info

Parameters:

  • order_id: order ID (value: numeral)

Example of response:

{
	"success":1,
	"return":{
		"100025362":{
			"pair":ltc_btc,
			"type":sell,
			"start_amount":13.345,
			"amount":12.345,
			"rate":485,
			"timestamp_created":1418654530,
			"status":0
		}
	}
}
  • array key: order ID (in example: 100025362)
  • pair: order pair (example: ltc_btc)
  • type: order type (example: buy or sell)
  • start_amount: starting amout at order creation
  • amount: order amount remaining to buy or to sell
  • rate: price of buying or selling
  • timestamp_created: order creation time
  • status: 0 - active, 1 - fulfilled and closed, 2 - cancelled, 3 - cancelled after partially fulfilled.

CancelOrder

Method cancells the chosen order

Requirements: priviledges of key info&trade

Parameters:

  • order_id: order ID (value: numeral)

Example of response:

{
	"success":1,
	"return":{
		"order_id":100025362,
		"funds":{
			"btc":15,
			"ltc":51.82,
			"nvc":0,
			...
		}
	}
}
  • order_id: order ID
  • funds: balances active after request

TradeHistory

Method returns transaction history.

Requirements: priviledges of key info

Parameters:

  • from: No. of transaction from which withdrawal starts (value: numeral, on default: 0)
  • count: quantity of withrawal transactions (value: numeral, on default: 1000)
  • from_id: ID of transaction from which withdrawal starts (value: numeral, on default: 0)
  • end_id: ID of transaction at which withdrawal finishes (value: numeral, on default: )
  • order: sorting at withdrawal (value: ASC or DESC, on default: DESC)
  • since: the time to start the display (value: unix time, on default: 0)
  • end: the time to end the display (value: unix time, on default: )
  • pair: pair (example: ltc_btc)

While using parameters since or end parameter order automatically takes the value ASC.

While using parameters sincethe earliest date available to get transaction history is one week ago.

Example of response:

{
	"success":1,
	"return":{
		"24523":{
			"pair":"ltc_btc",
			"type": "sell",
			"amount":11.4,
			"rate":0.145,
			"order_id":100025362,
			"is_your_order":1,
			"timestamp":1418654530
		}
		...
	}
}
  • array keys: order IDs (in example: 24523)
  • pair: pair (example: ltc_btc)
  • type: transaction type (example: buy or sell)
  • amount: bought or sold amount
  • rate: price of buying or selling
  • order_id: order ID
  • is_your_order: is the order yours (1 or 0)
  • timestamp: transaction time

GetDepositAddress

Method returns deposit address.

Requirements: priviledges of key deposits

Parameters:

  • coinName: ticker (example: BTC)
  • need_new: value: 0 or 1, on default: 0

Example of response:

{
	"success":1,
	"return":{
		"address": 1UHAnAWvxDB9XXETsi7z483zRRBmcUZxb3,
		"processed_amount": 1.00000000,		
		"server_time": 1437146228
	}
}

WithdrawCoinsToAddress

Method creates withdrawal request.

Requirements: priviledges of key withdrawals

Parameters:

  • coinName: ticker (example: BTC)
  • amount: amount to withdraw
  • address: destination address

Example of response:

{
	"success":1,
	"return":{
		"server_time": 1437146228
	}
}

CreateYobicode

Method allows you to create Yobicodes (coupons).

Method alias: CreateCoupon

Requirements: priviledges of key withdrawals

Parameters:

  • currency: ticker (example: BTC)
  • amount: amount of yobicode

Example of response:

{
	"success":1,
	"return":{
		"coupon": "YOBITUZ0HHSTBCOH5F6EAOENCRD8RGOQX3H01BTC",
		"transID": 1,	
		"funds":{
			"btc":15,
			"ltc":51.82,
			"nvc":0,
			...
		}
	}
}
  • coupon: Yobicode
  • transID: always 1 for compatibility with api of other exchanges
  • funds: balances active after request

RedeemYobicode

Method is used to redeem Yobicodes (coupons).

Method alias: RedeemCoupon

Requirements: priviledges of key deposits

Parameters:

  • coupon: yobicode to redeem (example: YOBITUZ0HHSTB...OQX3H01BTC)

Example of response:

{
	"success":1,
	"return":{
		"couponAmount": "1.2345",
		"couponCurrency": "BTC",
		"transID": 1,	
		"funds":{
			"btc":15,
			"ltc":51.82,
			"nvc":0,
			...
		}
	}
}
  • couponAmount: The amount that has been redeemed.
  • couponCurrency: The currency of the yobicode that has been redeemed.
  • transID: always 1 for compatibility with api of other exchanges
  • funds: balances active after request

Defi Public API

Example of request all pools:
https://yobit.net/api/defi/info

Example of request specific pools:
https://yobit.net/api/defi/info/btc_usdt-yo_btc

Example of response:

{
	"server_time":1418654531,
	"pools":{
		"usdt_spitz":{
			"liq1":"45540230.71160736",
			"liq2":"230.12172671",
			"price1":"0.00000505",
			"price2":"197896.26717427",
			"fee":"0.003",
			"price24high1":"0.00000512",
			"price24low1":"0.00000505",
			"price24high2":"197898.16740049",			
			"price24low2":"195199.11794729",
			"vol1":"47.57434935",			
			"vol2":"2.61017416",
			"algo1":"erc20",
			"tokenid1":"0xdac17f958d2ee523a2206206994597c13d831ec7",
			"algo2":"bep20",
			"tokenid2":"0x9d1d63501e3490aeedf0dba24f60c29918caf965",			

		}
		...
	}
}
  • liq1: liquidity providers invested currency 1 in the pool
  • liq2: liquidity providers invested currency 2 in the pool
  • price1: actual price 1
  • price2: actual price 2
  • fee: in % (0.003 means 0.3%)
  • price24high1: the highest price 1 at last 24 hours
  • price24low1: the lowest price 1 at last 24 hours
  • price24high2: the highest price 2 at last 24 hours
  • price24low2: the lowest price 2 at last 24 hours
  • vol1: volume of swaps in currency 1 at last 24 hours
  • vol2: volume of swaps in currency 2 at last 24 hours
  • algo1: erc20, trc20, bep20 or SHA256/Scrypt/X11
  • tokenid1: currency 1 token address for erc20, trc20, bep20 algos or empty for others
  • algo2: erc20, trc20, bep20 or SHA256/Scrypt/X11
  • tokenid2: currency 2 token address for erc20, trc20, bep20 algos or empty for others

Hidden pools are not shown in the list at Exchange home page.
In case if any pair is disabled it disappears from the list.

DefiSwapInfo

Method is used to get info about Swap before processing of it with DefiSwap function.

Requirements: priviledges of key info&trade

Parameters:

  • pool: pool name in format cur1_cur2 (example: btc_usdt)
  • PayCurrency: currency that you pay for swap. It should be cur1 OR cur2 (example: usdt)
  • PayAmount: amount that you pay for swap (example: 1.123)

Example of response:

{
	"success":1,
	"swap_made":0,
	"info":{
		"desc": "SWAP 1.12300000 USDT to 0.00002567 BTC with price 43732.86034952",
		"pay_amount": "1.12300000",
		"pay_currency": "USDT",
		"get_amount": "0.00002567",
		"get_currency": "BTC",
		"price_of_swap": "43732.86034952",
		"fee_total": "0.00000007",
		"fee_total_currency": "BTC",
		"price1_before": "43601.61783433",
		"price1_after": "43601.70585432",
		"price2_before": "0.00002293",
		"price2_after": "0.00002294",
	}
}
  • swap_made: is always 0. It shows that swap hasn't been processed.
  • pay_amount: amount that you pay for swap
  • pay_currency: currency that you pay for swap
  • get_amount: amount that you get during swap
  • get_currency: currency that you get during swap
  • price_of_swap: price of swap
  • fee_total: amount of fee
  • fee_total_currency: currency of fee
  • price1_before: actual price 1 of pool before swap
  • price1_after: actual price 2 of pool before swap
  • price2_before: shows what the price 1 would be if the swap processed
  • price2_after: shows what the price 2 would be if the swap processed

DefiSwap

Method is used to make Swaps.

Requirements: priviledges of key info&trade

Parameters:

  • pool: pool name in format cur1_cur2 (example: btc_usdt)
  • PayCurrency: currency that you pay for swap. It should be cur1 OR cur2 (example: usdt)
  • PayAmount: amount that you pay for swap (example: 1.123)

Example of response:

{
	"success":1,
	"swap_made":0,
	"info":{
		"desc": "SWAP 1.12300000 USDT to 0.00002567 BTC with price 43732.86034952",
		"pay_amount": "1.12300000",
		"pay_currency": "USDT",
		"get_amount": "0.00002567",
		"get_currency": "BTC",
		"price_of_swap": "43732.86034952",
		"fee_total": "0.00000007",
		"fee_total_currency": "BTC",
		"price1_before": "43601.61783433",
		"price1_after": "43601.70585432",
		"price2_before": "0.00002293",
		"price2_after": "0.00002294",
	},
	"user":{
		"new_balance1": "12.07789855",
		"new_balance1_currency": "BTC",
		"new_balance2": "497908.66928976",
		"new_balance2_currency": "USDT",
		"pooled1": "1.07518709",
		"pooled2": "46729.28782075",
		"pooled_est": "$93,233.91955017",
		"pooled_pr": "2.1456",
		"comfee1": "4.1894",
		"comfee2": "625.3309128",
		"comfee_est": "$1,207.09775086",
	}	
}
  • pay_amount: amount that you pay for swap
  • pay_currency: currency that you pay for swap
  • get_amount: amount that you get during swap
  • get_currency: currency that you get during swap
  • price_of_swap: price of swap
  • fee_total: amount of fee
  • fee_total_currency: currency of fee
  • price1_before: actual price 1 of pool before swap
  • price1_after: actual price 2 of pool before swap
  • price2_before: shows what the price 1 would be if the swap processed
  • price2_after: shows what the price 2 would be if the swap processed
  • new_balance1: your new balance of currency 1 after swap
  • new_balance1_currency: currency 1 name
  • new_balance2: your new balance of currency 2 after swap
  • new_balance2_currency: currency 2 name
  • pooled1: your part of currency 1 in defi pool
  • pooled2: your part of currency 2 in defi pool
  • pooled_est: estimated amount of pooled1+pooled2 in USD
  • pooled_pr: your percentage of defi pool (example: 2.1456 means 2.1456%)
  • comfee1: fees earned (cumulative of currency 1)
  • comfee2: fees earned (cumulative of currency 2)
  • comfee_est: estimated amount of comfee1+comfee2 in USD

Yanadia: & All thank you ..i made cookies to day for kids & eid 2morrow

Yanadia: come to my house :))

Yanadia: rpowrpow, Thx u

Yanadia: manbtc007, Thank yiou i am getting more old ... old is gold

okika: Yanadia, Have fun! :)

Yanadia: okika, yep thx :)

manbtc007: Yanadia, eat water melons. It will increase your drive.

Yanadia: manbtc007, ok :)

Yanadia: G Morning

Yanadia: Happy Eid al-Fitr To those who celebrate it Peace, Blessings, and Freedom. Please forgive me for any mistakes I may have made

okika: I wanna be a billionaire so ****** baaad

Yanadia: okika, U will Oki :)

okika: Yanadia, just singing the uncensored version of the radio hit lol

Yanadia: okika, lolzz good songs

asim399 L0: Dice

asim399 L0: Comp

Yanadia: Hmmmmm

Selvamech L0: dice bboooooommmm

Ikram957 L0: Yanadia Happy Eid Mubarak to you

Yanadia: Ikram957, Thank you , U too Eid Mubarak Ikram :)

elmo1217 L0: @ asim pls how do I convert my dice to usdt

marvisha L0: Selvamech, where is this traded (dice)

okika: elmo1217, marvisha, DICE-->RUR-->USDT

manbtc007: oh man this shouldn't have happened

manbtc007: Damn!!!!! it happened though

okika: manbtc007, ?

manbtc007: okika, I bought a coin at high price. just clicked buy when I wanted to do was sell.

okika: manbtc007, LOL, sorry for that, try less booze, sorry for this joke :D Sometimes I do the same

marvisha L0: HOW TO SELL YO10 ?

okika: marvisha, defi market, left side, blue DEFI button....

manbtc007: okika, It happened bcoz no booze in system. Made me unfocussed.

marvisha L0: okika, THANKS

manbtc007: okika, just poured 120ml inside. Thanks for the tip

okika: manbtc007, LOL

shah89 L0: marvisha, swap defi market

manbtc007: Yanadia, Yandia Yandia

manbtc007: Where are you

manbtc007: still feasting on kebabs

Yanadia: manbtc007, lolzz na ... just done my breakfast to day

Sahilnaqash L0: Yone in other exchange also up very

okika: Sahilnaqash, lol

manbtc007: I raining. Bootifool

okika: Raining bloooooooood From a lacerated sky Bleeding its horror Creating my structure Now I shall reign in blood

manbtc007: Rain Rain Come Again and make my flowers bloom

manbtc007: okika, Talking about real Rain. Summer is coming and my cucumbers need water to grow fat. There will be a huge demand and I'll black them as I did with water melons.

okika: manbtc007, from raining my old favorite song comes to my mind, I'm a metalhead. Though I've stopped listening to the songs with bad message, they are still good songs and I still hear inside.

manbtc007: okika, share the song. Its a bootifool habbit

okika: it's Raining Blood from Slayer, very aggressive thrash metal, I played it on drums when I had a metal band

manbtc007: okika, Wow you played drums. Thats great.

manbtc007: yanadia yanadia yandia