Version: bisq-api-v0.4.9.9.1-unreleased
Authors: | Dan Libby <dan@osc.co.cr>, Mike Rosseel <mike.rosseel@gmail.com>, Manfred Karrer <manfred@bitsquare.io> |
Created: | 2016-08-19 |
Last Updated: | 2016-08-19 |
The API is part of the Bitsquare application and may be accessed by making REST requests directly to bitsquare running on localhost.
REST was chosen over pure json-rpc because it simplifies development and debugging of client apps when developers can easily try out APIs directly in a web browser or via curl.
Authentication is performed via HTTP Basic Auth. An RPC username and password must be configured or the RPC service will not be available. By default, access is only allowed via localhost. This API is intended for use in trusted environments only. This closely mirrors the security model of the bitcoin-core RPC API.
param | type | desc | required | values | default |
---|---|---|---|---|---|
offer_id | string | Identifies offer to cancel | Yes |
param | type | desc | required | values | default |
---|---|---|---|---|---|
offer_id | string | Identifies the offer | Yes |
param | type | desc | required | values | default |
---|---|---|---|---|---|
market | string | filter by market | No | all | |
status | string | filter by status | No | "unfunded" | "live" | "done" | "cancelled" | "all" | all |
whose | string | filter by offer creator | No | "mine" | "notmine" | "all" | all |
start | longint | find offers after start time. seconds since 1970. | No | 0 | |
end | longint | find offers before end time. seconds since 1970. | No | 9223372036854775807 | |
limit | int | max records to return | No | 100 |
param | type | desc | required | values | default |
---|---|---|---|---|---|
market | string | identifies the market this offer will be placed in | Yes | ||
account_id | string | identifies the account to which funds will be received once offer is executed. | Yes | ||
direction | string | defines if this is an offer to buy or sell | Yes | sell | buy | |
amount | real | amount to buy or sell, in terms of left side of market pair | Yes | ||
min_amount | real | minimum amount to buy or sell, in terms of left side of market pair | Yes | ||
price_type | string | defines if this is a fixed offer or a percentage offset from present market price. | No | fixed | percentage | fixed |
price | string | interpreted according to "price-type". Percentages should be expressed in decimal form eg 1/2 of 1% = "0.005" and must be positive | Yes |
param | type | desc | required | values | default |
---|---|---|---|---|---|
offer_id | string | Identifies the offer to accept | Yes | ||
account_id | string | Identifies the payment account to receive funds into | Yes | ||
amount | string | amount to spend | Yes |
param | type | desc | required | values | default |
---|---|---|---|---|---|
trade_id | string | Identifies the trade | Yes |
param | type | desc | required | values | default |
---|---|---|---|---|---|
status | string | filter by wether each address has a non-zero balance or not | No | funded | unfunded | both | both |
start | int | starting index, zero based | No | 0 | |
limit | int | max number of addresses to return. | No | 100 |
param | type | desc | required | values | default |
---|---|---|---|---|---|
force_unique | bool | if true each address will be given out only once. else unused addresses may be given out multiple times to avoid hd-wallet gaps | No | true | false | false |
param | type | desc | required | values | default |
---|---|---|---|---|---|
offer_id | string | Identifies the offer to fund | Yes | ||
source_address | string | identifies bitcoin source address for coin selection. if omitted, an address will be selected automatically. | No |
param | type | desc | required | values | default |
---|---|---|---|---|---|
address_payto | string | recipient address | Yes | ||
amount | real | amount to send | Yes | ||
address_sources | csvstring | one or more source addresses, for coin control. If omitted, addresses will be automatically chosen | No |
param | type | desc | required | values | default |
---|---|---|---|---|---|
type | string | transaction type | No | send | receive | 0 |
start | longint | start of period | No | 0 | |
end | longint | end of period | No | INT_MAX | |
limit | int | max record to return | No | 100 |