This endpoint represents successful transactions in a given ledger.
Request
GET /ledgers/{id}/transactions{?cursor,limit,order}
Arguments
name |
notes |
description |
example |
id |
required, number |
Ledger ID |
69859 |
?cursor |
optional, default null |
A paging token, specifying where to start returning records from. |
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 |
curl Example Request
curl "https://horizon-testnet.stellar.org/ledgers/69859/transactions"
JavaScript Example Request
var StellarSdk = require('stellar-sdk');
var server = new StellarSdk.Server('https://horizon-testnet.stellar.org');
server.transactions()
.forLedger("8365")
.call()
.then(function (accountResults) {
console.log(accountResults.records)
})
.catch(function (err) {
console.log(err)
})
Response
This endpoint responds with a list of transactions in a given ledger. See transaction resource for reference.
Example Response
{
"_embedded": {
"records": [
{
"_links": {
"account": {
"href": "/accounts/GBS43BF24ENNS3KPACUZVKK2VYPOZVBQO2CISGZ777RYGOPYC2FT6S3K"
},
"effects": {
"href": "/transactions/fa78cb43d72171fdb2c6376be12d57daa787b1fa1a9fdd0e9453e1f41ee5f15a/effects{?cursor,limit,order}",
"templated": true
},
"ledger": {
"href": "/ledgers/146970"
},
"operations": {
"href": "/transactions/fa78cb43d72171fdb2c6376be12d57daa787b1fa1a9fdd0e9453e1f41ee5f15a/operations{?cursor,limit,order}",
"templated": true
},
"precedes": {
"href": "/transactions?cursor=631231343497216\u0026order=asc"
},
"self": {
"href": "/transactions/fa78cb43d72171fdb2c6376be12d57daa787b1fa1a9fdd0e9453e1f41ee5f15a"
},
"succeeds": {
"href": "/transactions?cursor=631231343497216\u0026order=desc"
}
},
"id": "fa78cb43d72171fdb2c6376be12d57daa787b1fa1a9fdd0e9453e1f41ee5f15a",
"paging_token": "631231343497216",
"hash": "fa78cb43d72171fdb2c6376be12d57daa787b1fa1a9fdd0e9453e1f41ee5f15a",
"ledger": 146970,
"created_at": "2015-09-24T10:07:09Z",
"account": "GBS43BF24ENNS3KPACUZVKK2VYPOZVBQO2CISGZ777RYGOPYC2FT6S3K",
"account_sequence": 279172874343,
"max_fee": 0,
"fee_paid": 0,
"operation_count": 1,
"envelope_xdr": "AAAAAGXNhLrhGtltTwCpmqlarh7s1DB2hIkbP//jgzn4Fos/AAAACgAAAEEAAABnAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA2ddmTOFAgr21Crs2RXRGLhiAKxicZb/IERyEZL/Y2kUAAAAXSHboAAAAAAAAAAAB+BaLPwAAAECDEEZmzbgBr5fc3mfJsCjWPDtL6H8/vf16me121CC09ONyWJZnw0PUvp4qusmRwC6ZKfLDdk8F3Rq41s+yOgQD",
"result_xdr": "AAAAAAAAAAoAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAA=",
"result_meta_xdr": "AAAAAAAAAAEAAAACAAAAAAACPhoAAAAAAAAAANnXZkzhQIK9tQq7NkV0Ri4YgCsYnGW/yBEchGS/2NpFAAAAF0h26AAAAj4aAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQACPhoAAAAAAAAAAGXNhLrhGtltTwCpmqlarh7s1DB2hIkbP//jgzn4Fos/AABT8kS2c/oAAABBAAAAZwAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAA"
}
]
},
"_links": {
"next": {
"href": "/ledgers/146970/transactions?order=asc\u0026limit=10\u0026cursor=631231343497216"
},
"prev": {
"href": "/ledgers/146970/transactions?order=desc\u0026limit=10\u0026cursor=631231343497216"
},
"self": {
"href": "/ledgers/146970/transactions?order=asc\u0026limit=10\u0026cursor="
}
}
}
Possible Errors
- The standard errors.
- not_found: A
not_found
error will be returned if there is no ledgers whose sequence matches the id
argument.
Edit this doc in GitHub