Skip to content

bitmarket-net/api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 

Repository files navigation

Summary

This document provides information about the BitMarket.net API. For a quick start, you can jump to the PHP sample code.

Table of contents

How to access the API?

To make an API call, you need to send a POST request to the following address: https://www.bitmarket.pl/api2/

The request must include appropriate parameters describing the API method to be called. There are two parameters that must be sent woth every request: method which selects the API method to be used, and tonce which contains the time parameter and is used to avoid replay attacks. All the other parameters dopend on the API method used.

API keys

To call the API functions, it is necessary first to obtain an API key. To generate this key, the user must visit our website: https://www.bitmarket.pl/apikeys.php

Each key contains the following components:

  • Public component - It is a code that is visible on the key list, and is passed along every API call.
  • Secret component - It is a code that is used to digitally sign the API call parameters and to authenticate the call. It is visible only during key creation.
  • Permissions - It is a list of API methods that can be called using this key. It is possible to limit this list, so that he person who possesses this API key can only use specific API methods.

The public key component must be passed in the API-Key HTTP header with every API call.

Message signing

The parameters of every API call must be signed to create a HMAC signature. The secret key component is used as th einput to the SHA512 method. This ensures that even if someone learns the public key component, they will still not be able to send API calls.

The HMAC signature must be passed in the API-Hash HTTP header with every API call.

The tonce parameter

The tonce parameter is required with every API call to secure the API from replay attacks.

This parameter must contain the current Unix timestamp when the API is called. Upon receiving the API call, our server compares it to its own local time (thich is synchronized to Internet time servers using the NTP proocol). If the difference is greater than 5 seconds, the operation will be rejected. This mechanism ensures that even if an attacker was able to snoop the headers of an API call, they would not be able to resubmit the command again because the timestamp would not match.

It is important that the time on the computer used to send API calls is also properly synchronized, to avoid mismatches in the timestamps. Proper NTP software, such as the ntpd Unix daemon, can be used to ensure this.

Call limits

The number of API calls that can be made on the user account is limited to:

  • swap contract creation - 100 per day
  • margin contract creation/alteration - 100 per day
  • buy/sell offer creation - 600 per day
  • trade - 600 per day

Please have in mind that other security limits may apply.

We reserve right to limit/block any account/IP address/subnet that is "scalping" without generating reasonable turnaround on our exchange.

Limits are global for the user account, regardless of how many API keys and IP addresses the user is using.

Users are not allowed to send their automated ( bot generated ) queries to any other transactional subsystem than our private API, even if that subsystem is publicly available/reachable.
Users breaking this rule will be banned and have their accounts closed.

Server responses

The API server sends responses to API calls in the JSON format. If the API call succeeds, the response contains a field named success with the value of true, as well as a field named data which contains the result of the call. Another field named limit contains information about the current API call limits on the user account, with the following fields:

  • used - the number of API calls used in the current time interval.
  • allowed - the total number of API calls allowed in the current time interval.
  • expires - the Unix timestamp indicating when the current time interval elapses.

If the API call does not succeed, the returned object contains a field error with the error number, as well as an errorMsg field with the textual error description.

Sample code

This sample PHP code can be used to send API calls to the server:

function bitmarket_api($method, $params = array())
{
    $key = "klucz_jawny";
    $secret = "klucz_tajny";

    $params["method"] = $method;
    $params["tonce"] = time();

    $post = http_build_query($params, "", "&");
    $sign = hash_hmac("sha512", $post, $secret);
    $headers = array(
        "API-Key: " . $key,
        "API-Hash: " . $sign,
    );

    $curl = curl_init();
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_URL, "https://www.bitmarket.pl/api2/");
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    $ret = curl_exec($curl);

    return json_decode($ret);
}

Sample return values

Here is a smaple JSON object returned afther a successful info method call:

{
    "success":true,
    "data":
    {
        "balances":
        {
            "available":
            {
                "PLN":4.166000000000,
                "BTC":0.029140000000,
                "LTC":10.301000000000
            },
            "blocked":
            {
                "PLN":59.4,
                "BTC":0,
                "LTC":0.089
            }
        }
    },
    "limit":
    {
        "used" : 1,
        "allowed" : 200,
        "expires" : 1395750600,
    }
}

Here is an example of an error message:

{
    "error":502,
    "errorMsg":"Invalid message hash"
}

Error codes

The following error codes can be returned from the application:

Error code Error description
500 Invalid HTTP method (other than POST)
501 Invalid public key component
502 Invalid message hash
503 Invalid value of the tonce parameter
504 The key is not authoriced to use this API method
505 Invalid value of the method parameter
506 Too many commands in a given time interval
507 Invalid nonce value (only if an old request is sent again - replay attack)
508 Invalid parameter value for method
509 The account has been banned
510 The account is not name verified
511 API access is globaly temporarily disabled
400 Invalid value of the market parameter
401 Invalid value of the type parameter
402 Invalid value of the amount parameter
403 Invalid value of the rate parameter
404 The operation amount is invalid
405 Insufficient account balance to perform the operation
406 The user has no access to specified market offer
407 Invalid value of the currency parameter
408 Invalid value of the count parameter
409 Invalid value of the start parameter
410 Invalid value of the address parameter.
411 Invalid value of the id parameter.
412 Invalid value of the type parameter.
413 Invalid value of the rateLoss parameter.
414 Invalid value of the rateProfit parameter.
415 Cannot close margin because the position is not fully open
416 Cannot cancel margin because the position is fully open
417 Order cannot be fully satisfied and all or nothing was requested (no longer in use)
418 Operation cannot be performed
419 Recipient has been banned
420 Invalid Fiat/Crypto for tradingdesk
421 Amount is too high
422 Tradingdesk purchase quota exceeded
423 Tradingdesk invalid transaction id
300 Internal application error
301 Withdrawal of funds is blocked temporarily
302 Trading is blocked temporarily
303 Fast fiat withdrawal is unavailable now
304 Withdrawal service is unavailable now

API method list

The list of currently supported API methods is presented below. The method name must always be passed in the method parameter.

info - account information

Input parameters:

none

Output parameters:

  • balances - object describing the funds available on the user account, with the following properties:
    • available - object describing free funds available in each currency.
    • blocked - object describing funds in active trade offers, in each currency.
  • account - object describing the state of the user account, with the following properties:
    • turnover - account turnover value.
    • commissionMaker - commission value as market maker.
    • commissionTaker - commission value as market taker.
  • bank_deposit_fiat - object describing information to deposit fiat currency, one for each. Currently only PLN and EUR:
    • PLN
      • bank_name - name of the bank where the deposit is to be made.
      • pay_to - name to whom deposit is to be made.
      • acc_num - the account number where deposit is to be made.
      • transfer_title - text to identify the deposit by the user.
    • EUR - same as PLN with one additional data
      • swift_code - the switch code to be used to transfer EURO

trade - submit an order

Input parameters:

  • market - market where the trade must be made (for example, "BTCEUR").
  • type - order type: buy ("bid" or "buy") or sell ("ask" or "sell").
  • amount - order amount (in cryptocurrency).
  • rate - exchange rate.
  • allOrNothing - flag to specify whether the order should be fulfilled completely or not.
    • "1" - The order must be fulfilled completely and the entire amount should be traded. If it is not possible, it results in error.
    • "0" - The order can be fulfilled partially. Rest of the amount will be kept in orderbook so that it can be traded later. This is the default behaviour if the parameter is not send.

Output parameters:

  • id - market order identifier.
  • order - object describing the newly made order:
    • id - market order identifier.
    • market - market where the order has been made.
    • amount - cryptocurrency amount.
    • rate - exchange rate.
    • fiat - fiat amount after exchange.
    • type - order type ("buy" or "sell").
    • time - order creation time.
  • balances - account balances after the operation (identical to those returned by the info command).

Please note that there are three possible scenarios when a trade is submitted:

  1. The trade is executed immediately, because a matched order is already present on the orderbook. In such case, the fields id and order will be empty, because no order is submitted in the orderbook. The balances field indicates the new account balances after the trade.
  2. The trade is partially executed. In such case the order field will describe the partial order submitted in the orderbook.
  3. The trade is not immediately executed, and the order is submitted in the orderbook in full. In such case the order field will contain the copy of the input parameters.

cancel - order cancel

Input parameters:

  • id - order identifier.

Output parameters:

  • balances - account balances after canceling the order.

orders - list of user orders

Input parameters:

  • market - the market from which the orderbook must be returned.

The market parameter can be empty, in which case the operation will return user orders from all markets (as an object with fields identical to available markets). Otherwise an object is returned with the following fields:

  • buy - list of buy orders (in the format identical to that returned from the order method).
  • sell - list of sell orders.

trades - list of user trades

Input parameters:

  • market - market where the trades took place, for example "BTCEUR".
  • count - number of list elements, possible values: from 1 to 1000 (1000 is the default).
  • start - number of the first element, zero based (0 is the default).

Output parameters:

  • total - total number of elements.
  • start - number of the first list element.
  • count - number of returned list elements.
  • results - the list of trades, each object has the following parameters:
    • id - trade identifier.
    • type - trade type ("buy" or "sell").
    • amountCrypto - cryptocurrency amount.
    • currencyCrypto - crptocurrency code (for example "BTC").
    • amountFiat - fiat amount.
    • currencyFiat - fiat currency code (for example "EUR").
    • rate - exchange rate.
    • time - trade time.

history - account operation history

Input parameters:

  • currency - currency of the operations to be fetched.
  • count - number of list elements, possible values: from 1 to 1000 (1000 is the default).
  • start - number of the first element, zero based (0 is the default).

Output parameters:

  • total - total number of elements.
  • start - number of the first list element.
  • count - number of returned list elements.
  • results - the list of history entries, each object has the following parameters:
    • id - operation identifier.
    • amount - operation amount.
    • currency - operation currency.
    • rate - exchange rate (if the operation describes a trade on the market).
    • commission - operation commission.
    • time - operation time.
    • type - operation type, such as:
      • "deposit" - deposit of funds.
      • "withdraw" - withdrawal of funds.
      • "withdrawCancel" - withdrawal cancellation.
      • "order" - order submission.
      • "trade" - market trade.
      • "cancel" - order cancellation.

withdrawals - list of completed Fiat/Crypto withdrawals

Input parameters:

  • count - number of list elements, possible values: from 1 to 1000 (1000 is the default).
  • start - number of the first element, zero based (0 is the default).

Output parameters:

  • total - total number of elements.
  • start - number of the first list element.
  • count - number of returned list elements.
  • results - the list of withdrawal entries, each object has the following parameters:
    • id - withdraw identifier (withdraw_id from withdraw table).
    • transaction_id - transaction ID in the blockchain if withdraw_type is Cryptocurrency.
    • received_in - cryptocurrency address or bank account number (for PLN withdrawal via bank).
    • currency - crypto / fiat currency code like BTC or PLN.
    • amount - amount withdrawn.
    • time - timestamp when the withdrawal was requested.
    • commission - withdrawal commission/fee.
    • withdraw_type - withdrawal type, such as:
      • "Cryptocurrency" - withdrawal of cryptocurrency like BTC or LTC.
      • "BlueCash" - withdrawal of PLN via BlueCash.
      • "Bank transfer" - withdrawal of fiat currency (PLN, EUR) via bank transfer.
      • "Express" - withdrawal of PLN via fast bank transfer.
      • "PolskiePrzelewy" - withdrawal of PLN via ATM transfer using Polskie Przelewy.
      • "EgoPay" - withdrawal of EUR via EgoPay.

tradingdesk - purchase fiat currency with crypto currency via tradingdesk

Input parameters:

  • fiat - fiat currency code (like "PLN").
  • crypto - crypto currency code (like "BTC").
  • amount - amount of fiat currency to be purchased.

Output parameters:

  • currency_fiat - fiat currency code (like "PLN").
  • currency_crypto - crypto currency code (like "BTC").
  • fiat_amount - amount of fiat currency to be purchased.
  • crypto_offer - amount of crypto currency to be paid if the order is confirmed.
  • rate - rate offered for the purchase order.
  • transaction_id - unique id that represent this order.
  • expire_after - timestamp (as per the timezone of the server) within which the order must be confirmed.
  • expire_after_formatted - expire date time.
  • status - status of the order.

tradingdeskStatus - check the status of tradingdesk order

Input parameters:

  • id - unique id that represent a tradingdesk order.
  • fiat - fiat currency code (like "PLN").
  • crypto - crypto currency code (like "BTC").

Output parameters:

  • currency_fiat - fiat currency code (like "PLN").
  • currency_crypto - crypto currency code (like "BTC").
  • fiat_amount - amount of fiat currency to be purchased.
  • crypto_offer - amount of crypto currency to be paid if the order is confirmed.
  • rate - rate offered for the purchase order.
  • transaction_id - unique id that represent this order.
  • expire_after - timestamp (as per the timezone of the server) within which the order must be confirmed.
  • expire_after_formatted - expire date time.
  • status - status of the order (P yet to be confirmed, E expired, Y processed)

tradingdeskConfirm - confirm the tradingdesk order

Input parameters:

  • id - unique id that represent a tradingdesk order.
  • fiat - fiat currency code (like "PLN").
  • crypto - crypto currency code (like "BTC").

Output parameters:

Non error code, implying that the order was confirmed.

cryptotradingdesk - sell fiat currency for crypto currency via cryptotradingdesk

Input parameters:

  • fiat - fiat currency code (like "PLN").
  • crypto - crypto currency code (like "BTC").
  • amount - amount of fiat currency to be sold.
  • crypto_receive_address - address where the received cryptos will be transferred.

Output parameters:

  • currency_fiat - fiat currency code (like "PLN").
  • currency_crypto - crypto currency code (like "BTC").
  • fiat_amount - amount of fiat currency to be sold.
  • crypto_receive_address - address where the received cryptos will be transferred.
  • crypto_offer - amount of crypto currency that will be received if the order is confirmed.
  • rate - rate offered for the sell order.
  • transaction_id - unique id that represent this order.
  • expire_after - timestamp (as per the timezone of the server) within which the order must be confirmed.
  • expire_after_formatted - expire date time.
  • status - status of the order.

cryptotradingdeskStatus - check the status of cryptotradingdesk order

Input parameters:

  • id - unique id that represent a cryptotradingdesk order.
  • fiat - fiat currency code for the order (like "PLN").
  • crypto - crypto currency code for the order (like "BTC").

Output parameters:

  • currency_fiat - fiat currency code (like "PLN").
  • currency_crypto - crypto currency code (like "BTC").
  • fiat_amount - amount of fiat currency to be sold.
  • crypto_offer - amount of crypto currency that will be received if the order is confirmed.
  • rate - rate offered for the sell order.
  • transaction_id - unique id that represent this order.
  • expire_after - timestamp (as per the timezone of the server) within which the order must be confirmed.
  • expire_after_formatted - expire date time.
  • status - status of the order (P yet to be confirmed, X confirmed and under processing, E expired, Y finished, N cancelled).
  • blockchaintx - transaction hash if the order is finished and the cryptos have been transferred to the requested address.

cryptotradingdeskConfirm - confirm the cryptotradingdesk order

Input parameters:

  • id - unique id that represent a cryptotradingdesk order.
  • fiat - fiat currency code for the order (like "PLN").
  • crypto - crypto currency code for the order (like "BTC").

Output parameters:

Non error code, implying that the order was confirmed.

withdraw - withdraw cryptocurrency

Input parameters:

  • amount - amount to withdraw.
  • currency - cryptocurrency code (like "BTC").
  • address - wallet address where the funds must be withdrawn.

Output value: the withdrawal transaction ID.

withdrawFiat - withdraw fiat currency

Input parameters:

  • currency - fiat currency, like EUR or PLN.
  • amount - the amount to withdraw.
  • account - bank account code for withdrawal.
  • account2 - the swift code of the bank (only if the currency is EUR).
  • withdrawal_note - a 10 character withdrawal note specified by user (only if the currency is PLN).
  • test_only - mode of the operation:
    • "y" - just perform basic validation and return the fee that will be charged. No withdrawal is made.
    • "n" - performs the withdrawal. This is the default mode.

Output parameters:

  • fee - the fee charged for the transaction
  • balance - the fiat currency balance after the transaction (when test_only is n)

withdrawPLNPP - withdraw fiat currency (only PLN for now) via ATM (using Polskie Przelewy service)

Input parameters:

  • currency - fiat currency (only PLN for now).
  • amount - the amount to withdraw.
  • phone - mobile phone number to receive the ATM Access code from Polskie Przelewy.
  • withdrawal_note - a 10 character withdrawal note specified by user (only if the currency is PLN).
  • test_only - mode of the operation:
    • "y" - just perform basic validation and return the fee that will be charged. No withdrawal is made.
    • "n" - performs the withdrawal. This is the default mode.

Output parameters:

  • fee - the fee charged for the transaction
  • balance - the fiat currency balance after the transaction (when test_only is n)

withdrawFiatFast - withdraw fiat currency (fast withdrawal)

Input parameters:

  • currency - fiat currency (only PLN).
  • amount - the amount to withdraw.
  • account - bank account code for withdrawal.
  • withdrawal_note - a 10 character withdrawal note specified by user.
  • test_only - mode of the operation:
    • "y" - just perform basic validation and return the fee that will be charged. No withdrawal is made.
    • "n" - performs the withdrawal. This is the default mode.

Output parameters:

  • fee - the fee charged for the transaction
  • balance - the fiat currency balance after the transaction (when test_only is n)

deposit - deposit cryptocurrency

Input parameters:

  • currency - cryptocurrency code (like "BTC").

Output value: the address for cryptocurrency deposits to the account.

transfer - transfer cryptocurrency to another bitmarket account, provided that the recipient is not banned.

Input parameters:

  • currency - cryptocurrency code (only "BTC" and "LTC").
  • amount - amount to transfer.
  • address - login name of the account to which fund will be transferred.

Output parameters:

  • currency - cryptocurrency code
  • balance - the cryptocurrency balance after the transaction

transfers - withdrawal history of internal transfer type of operations

Input parameters:

  • count - number of list elements, possible values: from 1 to 1000 (1000 is the default).
  • start - number of the first element, zero based (0 is the default).

Output parameters:

  • total - total number of elements.
  • start - number of the first list element.
  • count - number of returned list elements.
  • results - the list of history entries, each object has the following parameters:
    • transaction_id - unique id of the transaction.
    • receiver - login name of the user to whom the transfer was made.
    • currency - crypto currency transferred.
    • amount - amount of crypto currency transferred.
    • time - operation time.

marginList - list of open positions

Input parameters:

  • market - the market from which the position list must be returned.

Return value:

  • long - list of open long positions, each object has the following parameters:

    • id - position identifier.
    • type - position type ("long" or "short").
    • time - time when the position was submitted.
    • leverage - leverage value.
    • fiatTotal - total position value in fiat currency.
    • fiatOpened - opened amount.
    • fiatClosed - closed amount.
    • security - blocked secutory deposit (in cryptocurrency).
    • rate - requested position open rate.
    • rateOpen - real position open rate.
    • rateClose - position closing rate (if partially closed).
    • rateLoss - Stop Loss rate.
    • rateProfit - Take Profit rate.
    • rateCurrent - current position rate (according to the market orderbook).
    • fees - sum of charged fees.
    • profit - current position profit (in cryptocurrency).
    • profitPercentage - current position profit (in percent).
  • short - list of open short positions (same as above).

  • performance - object describing total account performance:

    • balance - amount of deposited security guarantee.
    • blocked - amount of security guarantee blocked for open positions.
    • available - amount of available security guarantee.
    • profit - current profit from open positions.
    • profitPercentage - current profit (in percent).
    • value - final value of the account.

marginOpen - open a position

Input parameters:

  • market - the market on which the position must be opened.
  • type - position type ("long" or "short").
  • leverage - levarage value (from 1.5 to 10).
  • amount - position value (in fiat currency).
  • rate - position open rate (0 means "at current market rate").
  • rateLoss - Stop Loss rate (0 means "do not use Stop Loss").
  • rateProfit - Take Profit rate (0 means "do not use Take Profit").

Return value:

  • id - identifier of a newly opened position.
  • long, short, value - account status after opening the position (same as with the marginList function).

marginClose - close a position

Input parameters:

  • market - the market on which the position must be opened.
  • id - position identifier.
  • amount - amount to close (up to position value).

Return value:

  • long, short, value - account status after opening the position (same as with the marginList function).

marginCancel - cancel opening a position (by lowering its value)

Input parameters:

  • market - the market on which the position must be opened.
  • id - position identifier.
  • amount - new position value, between fiatTotal and fiatOpened (see the note)

Return value:

  • long, short, value - account status after opening the position (same as with the marginList function).

Note: This could be bit confusing so here is an explanation. Suppose your position is 100 PLN. Out of that, only 20 is used. So, you can say, cancel the 70 PLN from the unused 80 PLN. That leaves 10 PLN. Add that to the used PLN and you get 30 PLN. So to reduce your position to 30 PLN, call marginCancel with value of 30.

A special case is: if 0 PLN is used, you can say cancel the 100 unused PLN and set the position to 0 PLN, in effect, removing the position altogether.

From the call to marginList, you get fiatTotal and fiatOpened for each margin positions. If fiatOpened is less than fiatTotal (position not fully opened), then you can cancel the unopened margin and call the marginCancel with the value between fiatTotal and fiatOpened to reduce the position value.

If the position is not opened at all, fiatOpened is 0, and sending 0 as amount will permanently remove the margin position.

marginModify - modify position parameters

Input parameters:

  • market - the market on which the position must be opened.
  • id - position identifier.
  • rate - new position open rate (meaningful only if the position is not open).
  • rateLoss - new Stop Loss rate (0 means "do not use Stop Loss").
  • rateProfit - new Take Profit rate (0 means "do not use Take Profit").

Return value:

  • long, short, value - account status after opening the position (same as with the marginList function).

marginBalanceAdd - add to margin balance from deposit

Input parameters:

  • market - name of the market (like BTCPLN).
  • amount - the amount to transfer, in float.

Output value:

  • margin_balance - the margin balance after addition.

marginBalanceRemove - remove from margin balance and add to deposit

Input parameters:

  • market - name of the market (like BTCPLN).
  • amount - the amount to transfer, in float.

Output value:

  • margin_balance - the margin balance after removal.

swapList - list swap contracts

Input parameters:

  • currency - cryptocurrency code (like "BTC").

Output value: array of objects describing active contracts on user account, with the following propertied for each object:

  • id - contract identifier.
  • amount - contract base amount.
  • rate - contract interest rate.
  • earnings - earnings accrued on contract.

swapOpen - open swap contract

Input parameters:

  • currency - cryptocurrency code (like "BTC").
  • amount - contract amount.
  • rate - contract percentage rate.

Output parameters:

  • id - contract identifier.
  • balances - balances on the account.

swapClose - close swap contract

Input parameters:

  • id - contract identifier.
  • currency - cryptocurrency code (like "BTC").

Output parameters:

  • balances - balances on the account.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published