Bitgo Transfer Webhook
event required | string Enum: "deposit" "withdraw" Name of event can be deposit or withdraw |
type required | string Type of event. |
hash required | string Transfer txid. |
transfer required | string Transfer id. |
coin required | string Currency code. |
wallet required | string Wallet id. |
Bitgo Transfer Webhook
Returns trading_fees table as paginated collection
group | string Member group for define maker/taker fee. |
market_id | string Enum: "btcbrl" "ethbrl" "ltcbrl" "bchbrl" "paxbrl" "xrpbrl" "xlmbrl" "eursbrl" "dashbrl" "paxgbrl" "ethbtc" "btceurs" "btcpax" "bchpax" "ltcpax" "xlmpax" "paxgpax" "btcusd" "ethusd" "bchusd" "ltcusd" "xrpusd" "any" Market id for define maker/taker fee. |
limit | integer <int32> [ 1 .. 1000 ] Default: 100 Limit the number of returned paginations. Defaults to 100. |
page | integer <int32> Default: 1 Specify the page of paginated results. |
ordering | string Default: "asc" Enum: "asc" "desc" If set, returned values will be sorted in specific order, defaults to 'asc'. |
order_by | string Default: "id" Name of the field, which result will be ordered by. |
Returns trading_fees table as paginated collection
[- {
- "id": 0,
- "group": "string",
- "market_id": "string",
- "maker": 0,
- "taker": 0,
- "created_at": "string",
- "updated_at": "string"
}
]
Get ticker of specific market.
market required | string Enum: "btcbrl" "btcpax" "ethbrl" "ethbtc" |
Get ticker of specific market.
{- "at": 0,
- "ticker": {
- "low": 0,
- "high": 0,
- "open": 0,
- "last": 0,
- "volume": 0,
- "amount": 0,
- "vol": 0,
- "avg_price": 0,
- "price_change_percent": "string",
- "at": 0
}
}
Get ticker of all markets (For response doc see /:market/tickers/ response).
Get ticker of all markets (For response doc see /:market/tickers/ response).
{- "at": 0,
- "ticker": {
- "low": 0,
- "high": 0,
- "open": 0,
- "last": 0,
- "volume": 0,
- "amount": 0,
- "vol": 0,
- "avg_price": 0,
- "price_change_percent": "string",
- "at": 0
}
}
Get OHLC(k line) of specific market.
market required | string Enum: "btcbrl" "btcpax" "ethbrl" "ethbtc" |
period | integer <int32> Default: 1 Enum: 1 5 15 30 60 120 240 360 720 1440 4320 10080 Time period of K line, default to 1. You can choose between 1, 5, 15, 30, 60, 120, 240, 360, 720, 1440, 4320, 10080 |
time_from | integer <int32> An integer represents the seconds elapsed since Unix epoch. If set, only k-line data after that time will be returned. |
time_to | integer <int32> An integer represents the seconds elapsed since Unix epoch. If set, only k-line data till that time will be returned. |
limit | integer <int32> [ 1 .. 10000 ] Default: 30 Limit the number of returned data points default to 30. Ignored if time_from and time_to are given. |
Get OHLC(k line) of specific market.
Get depth or specified market. Both asks and bids are sorted from highest price to lowest.
market required | string Enum: "btcbrl" "btcpax" "ethbrl" "ethbtc" |
limit | integer <int32> [ 1 .. 1000 ] Default: 300 Limit the number of returned price levels. Default to 300. |
Get depth or specified market. Both asks and bids are sorted from highest price to lowest.
Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.
market required | string Enum: "btcbrl" "btcpax" "ethbrl" "ethbtc" |
limit | integer <int32> [ 1 .. 1000 ] Default: 100 Limit the number of returned trades. Default to 100. |
timestamp | integer <int32> An integer represents the seconds elapsed since Unix epoch.If set, only trades executed before the time will be returned. |
order_by | string Default: "desc" Enum: "asc" "desc" If set, returned trades will be sorted in specific order, default to 'desc'. |
Get recent trades on market, each trade is included only once. Trades are sorted in reverse creation order.
[- {
- "id": "string",
- "price": 0,
- "amount": 0,
- "total": 0,
- "fee_currency": 0,
- "fee": 0,
- "fee_amount": 0,
- "market": "string",
- "created_at": "string",
- "taker_type": "string",
- "side": "string",
- "order_id": 0
}
]
Get the order book of specified market.
market required | string Enum: "btcbrl" "btcpax" "ethbrl" "ethbtc" |
asks_limit | integer <int32> [ 1 .. 200 ] Default: 20 Limit the number of returned sell orders. Default to 20. |
bids_limit | integer <int32> [ 1 .. 200 ] Default: 20 Limit the number of returned buy orders. Default to 20. |
Get the order book of specified market.
[- {
- "asks": [
- {
- "id": 0,
- "uuid": "string",
- "side": "string",
- "ord_type": "string",
- "price": 0,
- "avg_price": 0,
- "state": "string",
- "market": "string",
- "created_at": "string",
- "updated_at": "string",
- "origin_volume": 0,
- "remaining_volume": 0,
- "executed_volume": 0,
- "trades_count": 0,
- "trades": [
- {
- "id": "string",
- "price": 0,
- "amount": 0,
- "total": 0,
- "fee_currency": 0,
- "fee": 0,
- "fee_amount": 0,
- "market": "string",
- "created_at": "string",
- "taker_type": "string",
- "side": "string",
- "order_id": 0
}
]
}
], - "bids": [
- {
- "id": 0,
- "uuid": "string",
- "side": "string",
- "ord_type": "string",
- "price": 0,
- "avg_price": 0,
- "state": "string",
- "market": "string",
- "created_at": "string",
- "updated_at": "string",
- "origin_volume": 0,
- "remaining_volume": 0,
- "executed_volume": 0,
- "trades_count": 0,
- "trades": [
- {
- "id": "string",
- "price": 0,
- "amount": 0,
- "total": 0,
- "fee_currency": 0,
- "fee": 0,
- "fee_amount": 0,
- "market": "string",
- "created_at": "string",
- "taker_type": "string",
- "side": "string",
- "order_id": 0
}
]
}
]
}
]
Get all available markets.
limit | integer <int32> [ 1 .. 1000 ] Default: 100 Limit the number of returned paginations. Defaults to 100. |
page | integer <int32> Default: 1 Specify the page of paginated results. |
ordering | string Default: "asc" Enum: "asc" "desc" If set, returned values will be sorted in specific order, defaults to 'asc'. |
order_by | string Default: "position" Enum: "id" "position" Name of the field, which result will be ordered by. |
base_unit | string Strict filter for base unit |
quote_unit | string Strict filter for quote unit |
search | json |
search[base_code] | string Search base currency code using LIKE |
search[quote_code] | string Search qoute currency code using LIKE |
search[base_name] | string Search base currency name using LIKE |
search[quote_name] | string Search quote currency name using LIKE |
Get all available markets.
[- {
- "id": "string",
- "name": "string",
- "base_unit": "string",
- "quote_unit": "string",
- "min_price": 0,
- "max_price": 0,
- "min_amount": 0,
- "amount_precision": 0,
- "price_precision": 0,
- "state": "string"
}
]
Get list of currencies
limit | integer <int32> [ 1 .. 1000 ] Default: 100 Limit the number of returned paginations. Defaults to 100. |
page | integer <int32> Default: 1 Specify the page of paginated results. |
type | string Enum: "fiat" "coin" Currency type |
search | json |
search[code] | string Search by currency code using SQL LIKE |
search[name] | string Search by currency name using SQL LIKE |
Get list of currencies
[- {
- "id": "brl",
- "name": "Brazilian Real",
- "symbol": "R",
- "type": "fiat",
- "deposit_enabled": "string",
- "withdrawal_enabled": "string",
- "deposit_fee": "0.0",
- "min_deposit_amount": "0.01",
- "withdraw_fee": "10.0",
- "min_withdraw_amount": "100.0",
- "withdraw_limit_24h": "50000.0",
- "withdraw_limit_72h": "100000.0",
- "base_factor": 1,
- "precision": 2,
- "position": 2,
- "min_confirmations": "string"
}
]