Skip to main content

List

Fetches all transactions, including incoming and outgoing payments.

POST Transaction/List

Input

ParameterTypeRequiredDescriptionDefault
MerchantIdstringyesyour merchant ID
TimeStartstringnostart timenull
TimeFinishstringnoend timenull
Skipnumbernostart recordnull
Takenumbernomaximum number of records to fetchnull

The TimeStart and TimeFinish must be in the YYYY-MM-DD hh:mm:ss format. The hh:mm:ss part is optional.

Output

ParameterTypeDescription
TotalCountnumbertotal number of transactions during the time period
TransactionsTransaction[]the list of transactions

Transaction Type

FieldTypeDescription
Idstringtransaction ID (generated by ATLOS)
SubscriptionIdstringsubscription ID (generated by ATLOS)
MerchantIdstringyour merchant ID
OrderIdstringthe order ID you passed to the widget or the API as orderId
Amountnumberthe amount of asset received
AssetCodestringasset code
BlockchainCodestringblockchain code
Feestringthe amount of the commission fee taken
UserWalletstringfor EVM blockchains, the sender's wallet address
BlockchainHashstringblockchain transaction hash (a.k.a. blockchain transaction ID)
BlockNumbernumberblockchain block height
TimeSentstringtime when the transaction was recorded in a block
Statusnumber100 (success)

Example Input

{
"MerchantId": "8XOZ64KC9X",
"TimeStart": "2024-10-15",
"TimeFinish": "2024-10-20",
"Skip": 100,
"Take": 500
}

Example Output

{
"TotalCount": 259,
"Transactions": [
{
"TransactionId": "RpoWRCnC84cjjQ5Y",
"SubscriptionId": "Xx9Gp1FJuKiP",
"MerchantId": "8XOZ64KC9X",
"OrderId": "123465",
"AssetCode": "USDC",
"BlockchainCode": "PGN",
"Amount": 19.950000,
"Fee": 0.199500,
"UserWallet": "0xFFcf8FDEE72ac11b5c542428B35EEF5769C409f0",
"BlockchainHash": "0x81d4eba9504bac535d112551afc1dd35ebfc6c8306ad805728a0a886f765def6",
"BlockNumber": 25,
"TimeSent": "2024-10-15T02:17:04Z",
"Status": 100,
},
...
]
}