my_recent_swaps
my_recent_swaps (from_uuid page_number=1 limit=10 my_coin other_coin from_timestamp to_timestamp)
The my_recent_swaps
method returns the data of the most recent atomic swaps executed by the AtomicDEX API node. Please note that all filters (my_coin, from_timestamp, etc.) are combined using logical AND.
Structure | Type | Description |
---|---|---|
limit | number | limits the number of returned swaps. The default is 10 . |
from_uuid | string | AtomicDEX API will skip records until this uuid, skipping the from_uuid as well; The from_uuid approach is convenient for infinite scrolling implementation |
page_number | number | AtomicDEX API will return limit swaps from the selected page; This param will be ignored if from_uuid is set. |
my_coin | string | return only swaps that match the swap.my_coin = request.my_coin condition |
other_coin | string | return only swaps that match the swap.other_coin = request.other_coin condition |
from_timestamp | number (timestamp in seconds) | return only swaps that match the swap.started_at >= request.from_timestamp condition |
to_timestamp | number (timestamp in seconds) | return only swaps that match the swap.started_at < request.to_timestamp condition |
Structure | Type | Description |
---|---|---|
swaps | array of objects | A list of standard SwapStatus objects |
from_uuid | string | the from_uuid that was set in the request; this value is null if nothing was set |
skipped | number | the number of skipped records (i.e. the position of from_uuid in the list + 1 or (page_number - 1) * limit ; the value is 0 if from_uuid or page_number were not set or page_number is 1) |
limit | number | the limit that was set in the request; note that the actual number of swaps can differ from the specified limit (e.g. on the last page) |
total | number | total number of swaps available with the selected filters |
page_number | number | the page_number that was set in the request; if both page_number and from_uuid are not set in request it will default to 1 ; if from_uuid is present in request this value will be always null |
total_pages | number | total pages available with the selected filters and limit |
found_records | number | the number of returned swaps |
POST
my_recent_swaps{
"userpass": "testpsw",
"method": "my_recent_swaps",
"from_uuid": "e299c6ece7a7ddc42444eda64d46b163eaa992da65ce6de24eb812d715184e4c",
"limit": 2
}
POST
my_recent_swaps{
"userpass": "testpsw",
"method": "my_recent_swaps",
"page_number": 3,
"limit": 2
}
POST
my_recent_swaps{
"userpass": "testpsw",
"method": "my_recent_swaps",
"limit": 2,
"my_coin": "DOC",
"other_coin": "MARTY"
}
POST
my_recent_swaps{
"userpass": "testpsw",
"method": "my_recent_swaps",
"limit": 2,
"my_coin": "DOC",
"from_timestamp": 1611705600
}
POST
my_recent_swaps{
"userpass": "testpsw",
"method": "my_recent_swaps",
"limit": 2,
"my_coin": "DOC",
"from_timestamp": 1611705600,
"to_timestamp": 1611792001
}