Single
The single operation endpoint provides information about a specific operation.
- ARGUMENT -
id
requiredThe ID number for this operation.
join
optionalSet to
transactionsto include the transactions which created each of the operations in the response.
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Server("https://expansion-testnet.bantu.network");
server
.operations()
.operation("121692259040116737")
.call()
.then(function (resp) {
console.log(resp);
})
.catch(function (err) {
console.error(err);
});curl "https://horizon.stellar.org/operations/121692259040116737"Last updated
Was this helpful?