Recent shifts
GET/recent-shifts
Returns the 10 most recent completed shifts. Use query param limit
to change the number of recent shifts returned. limit
must be between 1-100.
note
To preserve users privacy, shifts involving privacy coins will return null
for both deposit and settle amount.
Responses
- 200
- application/json
- Schema
- Example
Schema
Array [
]
createdAt stringrequired
depositCoin stringrequired
depositNetwork stringrequired
depositAmount stringrequired
settleCoin stringrequired
settleNetwork stringrequired
settleAmount stringrequired
[
{
"createdAt": "2023-10-17T06:48:18.622Z",
"depositCoin": "ETH",
"depositNetwork": "ethereum",
"depositAmount": "0.12612806",
"settleCoin": "BTC",
"settleNetwork": "bitcoin",
"settleAmount": "0.00688094"
},
{
"createdAt": "2023-10-17T06:33:23.326Z",
"depositCoin": "BTC",
"depositNetwork": "bitcoin",
"depositAmount": "0.0004333",
"settleCoin": "ETH",
"settleNetwork": "ethereum",
"settleAmount": "0.00736396"
},
{
"createdAt": "2023-10-17T06:43:35.877Z",
"depositCoin": "BCH",
"depositNetwork": "bitcoincash",
"depositAmount": "1.26662368",
"settleCoin": "BTC",
"settleNetwork": "bitcoin",
"settleAmount": "0.00982187"
},
{
"createdAt": "2023-10-17T06:40:56.819Z",
"depositCoin": "ETH",
"depositNetwork": "ethereum",
"depositAmount": "0.1129051",
"settleCoin": "SHIB",
"settleNetwork": "ethereum",
"settleAmount": "24319792.76339942"
},
{
"createdAt": "2023-10-17T06:29:57.952Z",
"depositCoin": "BTC",
"depositNetwork": "lightning",
"depositAmount": "0.00177454",
"settleCoin": "TRX",
"settleNetwork": "tron",
"settleAmount": "551.217565"
},
{
"createdAt": "2023-10-17T06:30:07.816Z",
"depositCoin": "MATIC",
"depositNetwork": "polygon",
"depositAmount": "18.426196760034415",
"settleCoin": "ETH",
"settleNetwork": "ethereum",
"settleAmount": "0.00592032"
},
{
"createdAt": "2023-10-17T06:25:30.119Z",
"depositCoin": "ETH",
"depositNetwork": "ethereum",
"depositAmount": "0.0056751",
"settleCoin": "USDT",
"settleNetwork": "ethereum",
"settleAmount": "8.072691"
},
{
"createdAt": "2023-10-17T06:25:29.831Z",
"depositCoin": "SOL",
"depositNetwork": "solana",
"depositAmount": "0.32",
"settleCoin": "APT",
"settleNetwork": "aptos",
"settleAmount": "1.48814278"
},
{
"createdAt": "2023-10-17T06:21:52.261Z",
"depositCoin": "BTC",
"depositNetwork": "bitcoin",
"depositAmount": "0.025",
"settleCoin": "BCH",
"settleNetwork": "bitcoincash",
"settleAmount": "3.01195714"
},
{
"createdAt": "2023-10-17T06:16:55.375Z",
"depositCoin": "BTC",
"depositNetwork": "bitcoin",
"depositAmount": "0.0003552",
"settleCoin": "ETH",
"settleNetwork": "ethereum",
"settleAmount": "0.00601536"
}
]
Loading...