Skip to main content
POST
/
markets
/
strategy
/
infos
Get Loopscale Strategies
curl --request POST \
  --url https://tars.loopscale.com/v1/markets/strategy/infos \
  --header 'Content-Type: application/json' \
  --data '
{
  "userAddress": "<string>",
  "addresses": [
    "<string>"
  ],
  "principalMints": [
    "<string>"
  ],
  "page": 123,
  "pageSize": 123
}
'
{
  "strategies": [
    {
      "strategy": {
        "address": "<string>",
        "principalMint": "<string>",
        "tokenBalance": 123,
        "externalYieldAmount": 123,
        "currentDeployedAmount": 123,
        "outstandingInterestAmount": 123,
        "interestPerSecond": 123,
        "lastAccruedTimestamp": 123
      },
      "externalYieldInfo": {
        "apy": 123
      }
    }
  ],
  "total": 123
}

Body

application/json
userAddress
string

Lender's address

addresses
string[]

List of strategy onchain addresses to load

principalMints
string[]

List of vault principal mints to select

page
integer

Pagination offset, sorted by APY

pageSize
integer

Pagination limit (max 1000)

Response

List of strategies that match filter

strategies
object[]

Array of strategy data

total
number

Total number of strategies for this filter (to inform pagination)