This endpoint represents operations that are part of successfully validated transactions.
Please note that this endpoint returns operations that are part of failed transactions if include_failed
parameter is true
and Horizon is ingesting failed transactions.
This endpoint can also be used in streaming mode so it is possible to use it to listen as operations are processed in the Stellar network.
If called in streaming mode Horizon will start at the earliest known operation 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 operations created since your request time.
Request
GET /operations{?cursor,limit,order}
Arguments
name |
notes |
description |
example |
?cursor |
optional, any, 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 |
?include_failed |
optional, bool, default: false |
Set to true to include operations of failed transactions in results. |
true |
curl Example Request
curl "https://horizon-testnet.stellar.org/operations?limit=200&order=desc"
JavaScript Example Request
var StellarSdk = require('stellar-sdk');
var server = new StellarSdk.Server('https://horizon-testnet.stellar.org');
server.operations()
.call()
.then(function (operationsResult) {
//page 1
console.log(operationsResult.records)
return operationsResult.next()
})
.then(function (operationsResult) {
//page 2
console.log(operationsResult.records)
})
.catch(function (err) {
console.log(err)
})
Response
This endpoint responds with a list of operations. See operation resource for reference.
Example Response
{
"_embedded": {
"records": [
{
"_links": {
"effects": {
"href": "/operations/77309415424/effects/{?cursor,limit,order}",
"templated": true
},
"precedes": {
"href": "/operations?cursor=77309415424&order=asc"
},
"self": {
"href": "/operations/77309415424"
},
"succeeds": {
"href": "/operations?cursor=77309415424&order=desc"
},
"transactions": {
"href": "/transactions/77309415424"
}
},
"account": "GBIA4FH6TV64KSPDAJCNUQSM7PFL4ILGUVJDPCLUOPJ7ONMKBBVUQHRO",
"funder": "GCEZWKCA5VLDNRLN3RPRJMRZOX3Z6G5CHCGSNFHEYVXM3XOJMDS674JZ",
"id": 77309415424,
"paging_token": "77309415424",
"starting_balance": "1000.0000000",
"transaction_successful": true,
"type_i": 0,
"type": "create_account"
},
{
"_links": {
"effects": {
"href": "/operations/463856472064/effects/{?cursor,limit,order}",
"templated": true
},
"precedes": {
"href": "/operations?cursor=463856472064&order=asc"
},
"self": {
"href": "/operations/463856472064"
},
"succeeds": {
"href": "/operations?cursor=463856472064&order=desc"
},
"transactions": {
"href": "/transactions/463856472064"
}
},
"account": "GC2ADYAIPKYQRGGUFYBV2ODJ54PY6VZUPKNCWWNX2C7FCJYKU4ZZNKVL",
"funder": "GBIA4FH6TV64KSPDAJCNUQSM7PFL4ILGUVJDPCLUOPJ7ONMKBBVUQHRO",
"id": 463856472064,
"paging_token": "463856472064",
"starting_balance": "1000.0000000",
"transaction_successful": true,
"type_i": 0,
"type": "create_account"
}
]
},
"_links": {
"next": {
"href": "/operations?order=asc&limit=2&cursor=463856472064"
},
"prev": {
"href": "/operations?order=desc&limit=2&cursor=77309415424"
},
"self": {
"href": "/operations?order=asc&limit=2&cursor="
}
}
}
Example Streaming Event
{
"_links": {
"effects": {
"href": "/operations/77309415424/effects/{?cursor,limit,order}",
"templated": true
},
"precedes": {
"href": "/operations?cursor=77309415424&order=asc"
},
"self": {
"href": "/operations/77309415424"
},
"succeeds": {
"href": "/operations?cursor=77309415424&order=desc"
},
"transactions": {
"href": "/transactions/77309415424"
}
},
"account": "GBIA4FH6TV64KSPDAJCNUQSM7PFL4ILGUVJDPCLUOPJ7ONMKBBVUQHRO",
"funder": "GCEZWKCA5VLDNRLN3RPRJMRZOX3Z6G5CHCGSNFHEYVXM3XOJMDS674JZ",
"id": 77309415424,
"paging_token": "77309415424",
"starting_balance": "1000.0000000",
"transaction_successful": true,
"type_i": 0,
"type": "create_account"
}
Possible Errors
在 GitHub 上编辑此页面