The single offer endpoint provides information on a specific offer.
- ARGUMENT -
offer_id required
A unique identifier for this offer.
var StellarSdk = require("stellar-sdk");
var server = new StellarSdk.Server("https://expansion-testnet.bantu.network");
server
.offers()
.offer("165563085")
.call()
.then(function (resp) {
console.log(resp);
})
.catch(function (err) {
console.error(err);
});