Activations
This endpoint retrieves all child accounts activated by a given account.
There is not a dedicated "create account" transaction. The Payment transaction automatically creates a new account if the payment sends XRP equal to or greater than the account reserve to a valid address that does not already have an account.
Request
GET /api/v1/account/{ACCOUNT}/activations
Example
$ curl https://api.xrpscan.com/api/v1/account/rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY/activations
Response
{
"result": "success",
"count": 25,
"marker": "20180921135312|000041687556|00047",
"accounts": [
{
"account": "rGbvH8TVWsmmFWPUDypx1CCCk4znoaofLp",
"parent": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
"initial_balance": "20",
"inception": "2018-02-27T23:33:40Z",
"ledger_index": 36880537,
"tx_hash": "485B6C4AF662EE45DA4F9B567613C04039ACD395FA383795224EE91DFCABCE68",
"parentName": {
"name": "XRP Tip Bot",
"account": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
"domain": "xrptipbot.com",
"twitter": "xrptipbot",
"verified": true
}
},
{
"account": "rMWoY6X6LHmrTv3UmC3w3TCa6S9URXTcb7",
"parent": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
"initial_balance": "20",
"inception": "2018-06-02T07:02:20Z",
"ledger_index": 39090386,
"tx_hash": "BEE4990AC93DE798AC9D41EA938B36F3229E56E5B21C0827D7DCCA804E74EDD6",
"parentName": {
"name": "XRP Tip Bot",
"account": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
"domain": "xrptipbot.com",
"twitter": "xrptipbot",
"verified": true
}
},
...
]
}
Last updated