People on the Stellar network can make offers to buy or sell assets. This endpoint represents all the offers a particular account makes.
This endpoint can also be used in streaming mode so it is possible to use it to listen as offers are processed in the Stellar network.
If called in streaming mode Horizon will start at the earliest known offer 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 offers created since your request time.
Request
GET /accounts/{account}/offers{?cursor,limit,order}
Arguments
name |
notes |
description |
example |
account |
required, string |
Account ID |
GA2HGBJIJKI6O4XEM7CZWY5PS6GKSXL6D34ERAJYQSPYA6X6AI7HYW36 |
?cursor |
optional, any, 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/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4/offers"
JavaScript Example Request
var StellarSdk = require('stellar-sdk');
var server = new StellarSdk.Server('https://horizon-testnet.stellar.org');
server.offers('accounts', 'GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4')
.call()
.then(function (offerResult) {
console.log(offerResult);
})
.catch(function (err) {
console.error(err);
})
Response
The list of offers.
Note: a response of 200 with an empty records array may either mean there are no offers for account_id
or account_id
does not exist.
Example Response
{
"_links": {
"self": {
"href": "https://horizon-testnet.stellar.org/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4/offers?order=asc&limit=10&cursor="
},
"next": {
"href": "https://horizon-testnet.stellar.org/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4/offers?order=asc&limit=10&cursor=122"
},
"prev": {
"href": "https://horizon-testnet.stellar.org/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4/offers?order=desc&limit=10&cursor=121"
}
},
"_embedded": {
"records": [
{
"_links": {
"self": {
"href": "https://horizon-testnet.stellar.org/offers/121"
},
"offer_maker": {
"href": "https://horizon-testnet.stellar.org/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4"
}
},
"id": 121,
"paging_token": "121",
"seller": "GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4",
"selling": {
"asset_type": "credit_alphanum4",
"asset_code": "BAR",
"asset_issuer": "GBAUUA74H4XOQYRSOW2RZUA4QL5PB37U3JS5NE3RTB2ELJVMIF5RLMAG"
},
"buying": {
"asset_type": "credit_alphanum4",
"asset_code": "FOO",
"asset_issuer": "GBAUUA74H4XOQYRSOW2RZUA4QL5PB37U3JS5NE3RTB2ELJVMIF5RLMAG"
},
"amount": "23.6692509",
"price_r": {
"n": 387,
"d": 50
},
"price": "7.7400000",
"last_modified": "1970-01-01T00:00:05Z"
},
{
"_links": {
"self": {
"href": "https://horizon-testnet.stellar.org/offers/122"
},
"offer_maker": {
"href": "https://horizon-testnet.stellar.org/accounts/GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4"
}
},
"id": 122,
"paging_token": "122",
"seller": "GCJ34JYMXNI7N55YREWAACMMZECOMTPIYDTFCQBWPUP7BLJQDDTVGUW4",
"selling": {
"asset_type": "credit_alphanum4",
"asset_code": "BAR",
"asset_issuer": "GBAUUA74H4XOQYRSOW2RZUA4QL5PB37U3JS5NE3RTB2ELJVMIF5RLMAG"
},
"buying": {
"asset_type": "credit_alphanum4",
"asset_code": "FOO",
"asset_issuer": "GBAUUA74H4XOQYRSOW2RZUA4QL5PB37U3JS5NE3RTB2ELJVMIF5RLMAG"
},
"amount": "72.0000000",
"price_r": {
"n": 779,
"d": 100
},
"price": "7.7900000",
"last_modified": "1970-01-01T00:00:06Z"
}
]
}
}
Possible Errors
在 GitHub 上编辑此页面