Skip to main content
GET
/
lending-stocks
/
api
/
markets
/
{marketId}
/
transactions
curl "https://api.trusset.org/lending-stocks/api/markets/{marketId}/transactions?limit=20" \
  -H "X-API-Key: trusset_your_key_here"
{
  "success": true,
  "data": {
    "transactions": [
      {
        "id": "tx_001",
        "marketId": "clx_market_001",
        "txType": "ORACLE_SYNC",
        "userAddress": "api",
        "amount": "185.50",
        "txHash": "0xabc...def",
        "timestamp": "2025-06-15T11:30:00.000Z"
      }
    ]
  }
}
Returns the most recent transactions recorded for a market, ordered newest first.

Path Parameters

marketId
string
required
Market ID.

Query Parameters

limit
integer
default:"50"
Number of transactions to return. Min 1, max 200.
curl "https://api.trusset.org/lending-stocks/api/markets/{marketId}/transactions?limit=20" \
  -H "X-API-Key: trusset_your_key_here"
{
  "success": true,
  "data": {
    "transactions": [
      {
        "id": "tx_001",
        "marketId": "clx_market_001",
        "txType": "ORACLE_SYNC",
        "userAddress": "api",
        "amount": "185.50",
        "txHash": "0xabc...def",
        "timestamp": "2025-06-15T11:30:00.000Z"
      }
    ]
  }
}