Retrieve Related Trades
This endpoint represents successful trades fulfilled by the given liquidity pool and can be used in streaming mode. Streaming mode allows you to listen for new trades referencing this liquidity pool as they are added to the Stellar ledger. If called in streaming mode, Horizon will start at the earliest known trade unless a cursor is set, in which case it will start from that cursor. By setting the cursor value to now, you can stream trade created since your request time.
Path Parameters
- liquidity_pool_id any required
A unique identifier for this liquidity pool.
Query Parameters
- cursor integer
A number that points to a specific location in a collection of responses and is pulled from the paging_token value of a record.
- order string
Possible values: [
asc
,desc
]A designation of the order in which records should appear. Options include asc (ascending) or desc (descending). If this argument isn’t set, it defaults to asc.
- limit integer
The maximum number of records returned. The limit can range from 1 to 200 - an upper limit that is hardcoded in Horizon for performance reasons. If this argument isn’t designated, it defaults to 10.
- 200
Success
- application/json
- Schema
- Example (from schema)
- RetrieveRelatedTrades
Schema
_links object
self object
href link requiredtemplated booleannext object
href link requiredtemplated booleanprev object
href link requiredtemplated boolean_embedded object
records object[]
Array [_links object
self object required
href link requiredtemplated booleanbase object required
href link requiredtemplated booleancounter object required
href link requiredtemplated booleanoperation object required
href link requiredtemplated booleanid idpaging_token paging_tokenledger_close_time stringoffer_id stringtrade_type stringliquidity_pool_fee_bp uint32base_liquidity_pool_id stringbase_offer_id stringbase_account addressPossible values: Value must match regular expression
G[A-Z0-9]{55}
base_amount stringbase_asset_type stringbase_asset_code stringbase_asset_issuer stringcounter_liquidity_pool_id stringcounter_offer_id stringcounter_account addressPossible values: Value must match regular expression
G[A-Z0-9]{55}
counter_amount stringcounter_asset_type stringcounter_asset_code stringcounter_asset_issuer addressPossible values: Value must match regular expression
G[A-Z0-9]{55}
base_is_seller booleanprice object
n stringd string]
{
"_links": {
"self": {
"href": "string",
"templated": true
},
"next": {
"href": "string",
"templated": true
},
"prev": {
"href": "string",
"templated": true
}
},
"_embedded": {
"records": [
{
"_links": {
"self": {
"href": "string",
"templated": true
},
"base": {
"href": "string",
"templated": true
},
"counter": {
"href": "string",
"templated": true
},
"operation": {
"href": "string",
"templated": true
}
},
"id": "string",
"paging_token": "string",
"ledger_close_time": "string",
"offer_id": "string",
"trade_type": "string",
"liquidity_pool_fee_bp": 0,
"base_liquidity_pool_id": "string",
"base_offer_id": "string",
"base_account": "string",
"base_amount": "string",
"base_asset_type": "string",
"base_asset_code": "string",
"base_asset_issuer": "string",
"counter_liquidity_pool_id": "string",
"counter_offer_id": "string",
"counter_account": "string",
"counter_amount": "string",
"counter_asset_type": "string",
"counter_asset_code": "string",
"counter_asset_issuer": "string",
"base_is_seller": true,
"price": {
"n": "string",
"d": "string"
}
}
]
}
}
{
"_links": {
"self": {
"href": "https://horizon.stellar.org/liquidity_pools/3b476aff8a406a6ec3b61d5c038009cef85f2ddfaf616822dc4fec92845149b4/trades?cursor=&limit=2&order=asc"
},
"next": {
"href": "https://horizon.stellar.org/liquidity_pools/3b476aff8a406a6ec3b61d5c038009cef85f2ddfaf616822dc4fec92845149b4/trades?cursor=120192370561220608&limit=2&order=asc"
},
"prev": {
"href": "https://horizon.stellar.org/liquidity_pools/3b476aff8a406a6ec3b61d5c038009cef85f2ddfaf616822dc4fec92845149b4/trades?cursor=120192344791343104&limit=2&order=desc"
}
},
"_embedded": {
"records": [
{
"_links": {
"self": {
"href": ""
},
"base": {
"href": "https://horizon.stellar.org/accounts/GAVH5JM5OKXGMQDS7YPRJ4MQCPXJUGH26LYQPQJ4SOMOJ4SXY472ZM7G"
},
"counter": {
"href": "https://horizon.stellar.org/accounts/GBB4JST32UWKOLGYYSCEYBHBCOFL2TGBHDVOMZP462ET4ZRD4ULA7S2L"
},
"operation": {
"href": "https://horizon.stellar.org/operations/3697472920621057"
}
},
"id": "3697472920621057-0",
"paging_token": "3697472920621057-0",
"ledger_close_time": "2015-11-18T03:47:47Z",
"offer_id": "9",
"base_offer_id": "9",
"base_account": "GAVH5JM5OKXGMQDS7YPRJ4MQCPXJUGH26LYQPQJ4SOMOJ4SXY472ZM7G",
"base_amount": "10.0000000",
"base_asset_type": "native",
"counter_liquidity_pool": "3b476aff8a406a6ec3b61d5c038009cef85f2ddfaf616822dc4fec92845149b4",
"liquidity_pool_fee_bp": "30",
"counter_amount": "2.6700000",
"counter_asset_type": "credit_alphanum4",
"counter_asset_code": "JPY",
"counter_asset_issuer": "GBVAOIACNSB7OVUXJYC5UE2D4YK2F7A24T7EE5YOMN4CE6GCHUTOUQXM",
"base_is_seller": true,
"price": {
"n": "267",
"d": "1000"
},
"trade_type": "liquidity_pool"
}
]
}
}