This endpoint represents all ledgers. This endpoint can also be used in streaming mode so it is possible to use it to get notifications as ledgers are closed by the HC Net. If called in streaming mode aurora will start at the earliest known ledger unless a cursor is set. In that case it will start from the cursor. You can also set cursor value to now to only stream ledgers created since your request time.
GET /ledgers{?cursor,limit,order}
Arguments
Name | Notes | Description | Example |
---|---|---|---|
?cursor | optional, default null | A paging token, specifying where to start returning records from. When streaming this can be set to now to stream object created since your request time. | 12884905984 |
?order | optional, string, default asc | The order in which to return rows, “asc” or “desc”. | asc |
?limit | optional, number, default 10 | Maximum number of records to return. | 200 |
This endpoint responds with a list of ledgers. See ledger resource for reference.
Example Streaming Event
{
“_links” : {
“effects” : {
“href” : “/ledgers/69859/effects/{?cursor,limit,order}”
“templated” : true
},
“operations” : {
“href” : “/ledgers/69859/operations/{?cursor,limit,order}”
“templated” : true
},
“self” : {
“href” : “/ledgers/69859”
},
“transactions” : {
“href” : “/ledgers/69859/transactions/{?cursor,limit,order}”
“templated” : true
}
},
“id” : “4db1e4f145e9ee75162040d26284795e0697e2e84084624e7c6c723ebbf80118” ,
“paging_token” : “300042120331264” ,
“hash” : “4db1e4f145e9ee75162040d26284795e0697e2e84084624e7c6c723ebbf80118” ,
“prev_hash” : “4b0b8bace3b2438b2404776ce57643966855487ba6384724a3c664c7aa4cd9e4” ,
“sequence” : 69859 ,
“transaction_count” : 0 ,
“operation_count” : 0 ,
“closed_at” : “2015-07-20T15:51:52Z” ,
“total_coins” : “100000000000.0000000” ,
“fee_pool” : “0.0025600” ,
“base_fee_in_jots” : 100 ,
“base_reserve_in_jots” : 100000000 ,
“max_tx_set_size” : 50
}
Support Agent
*Powered by HashCash