curl --request POST \
--url https://tars.loopscale.com/v1/markets/strategy/infos \
--header 'Content-Type: application/json' \
--data '
{
"addresses": [
"<string>"
],
"collateralTermsAssetFilter": [
"<string>"
],
"overridePageSize": true,
"page": 1,
"pageSize": 1,
"principalMints": [
"<string>"
],
"showArchived": true,
"sortDirection": 1,
"sortType": 1,
"userAddress": "<string>"
}
'import requests
url = "https://tars.loopscale.com/v1/markets/strategy/infos"
payload = {
"addresses": ["<string>"],
"collateralTermsAssetFilter": ["<string>"],
"overridePageSize": True,
"page": 1,
"pageSize": 1,
"principalMints": ["<string>"],
"showArchived": True,
"sortDirection": 1,
"sortType": 1,
"userAddress": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
addresses: ['<string>'],
collateralTermsAssetFilter: ['<string>'],
overridePageSize: true,
page: 1,
pageSize: 1,
principalMints: ['<string>'],
showArchived: true,
sortDirection: 1,
sortType: 1,
userAddress: '<string>'
})
};
fetch('https://tars.loopscale.com/v1/markets/strategy/infos', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tars.loopscale.com/v1/markets/strategy/infos",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'addresses' => [
'<string>'
],
'collateralTermsAssetFilter' => [
'<string>'
],
'overridePageSize' => true,
'page' => 1,
'pageSize' => 1,
'principalMints' => [
'<string>'
],
'showArchived' => true,
'sortDirection' => 1,
'sortType' => 1,
'userAddress' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://tars.loopscale.com/v1/markets/strategy/infos"
payload := strings.NewReader("{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://tars.loopscale.com/v1/markets/strategy/infos")
.header("Content-Type", "application/json")
.body("{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://tars.loopscale.com/v1/markets/strategy/infos")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"aggregate": {
"count": 1,
"expected24hInterestUsd": 123,
"interestAccruedUsd": 123,
"interestEarnedAllTimeUsd": 123,
"principalDeployedUsd": 123,
"strategyBalanceUsd": 123,
"totalSupplyUsd": 123,
"wAvgApy": 123
},
"items": [
{
"borrowCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"strategy": {
"activeLoanCount": "<string>",
"address": "<string>",
"borrowCap1hrAmount": "<string>",
"borrowCap1hrPeriodStart": "<string>",
"borrowCap24hrAmount": "<string>",
"borrowCap24hrPeriodStart": "<string>",
"bump": 1,
"closed": true,
"createdAt": "<string>",
"cumulativeInterestAccrued": "<string>",
"cumulativeLoanCount": "<string>",
"cumulativePrincipalOriginated": "<string>",
"currentDeployedAmount": "<string>",
"externalYieldAmount": "<string>",
"externalYieldSource": 1,
"feeClaimable": "<string>",
"interestFee": "<string>",
"interestPerSecond": 123,
"lastAccruedTimestamp": "<string>",
"lastInteractedTime": "<string>",
"lastInteractedTxn": "<string>",
"lender": "<string>",
"liquidityBuffer": "<string>",
"marketInformation": "<string>",
"nonce": "<string>",
"originationCap": "<string>",
"originationFee": "<string>",
"originationsEnabled": true,
"outstandingInterestAmount": "<string>",
"principalFee": "<string>",
"principalMint": "<string>",
"supplyCap1hrAmount": "<string>",
"supplyCap1hrPeriodStart": "<string>",
"supplyCap24hrAmount": "<string>",
"supplyCap24hrPeriodStart": "<string>",
"tokenBalance": "<string>",
"version": 1,
"withdrawCap1hrAmount": "<string>",
"withdrawCap1hrPeriodStart": "<string>",
"withdrawCap24hrAmount": "<string>",
"withdrawCap24hrPeriodStart": "<string>",
"writeVersion": "<string>",
"id": 1
},
"supplyCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"terms": {
"assetTerms": {},
"borrowCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
},
"supplyCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
},
"withdrawCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
}
},
"withdrawCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"expected24hInterestUsd": 123,
"interestAccruedUsd": 123,
"interestEarnedAllTimeUsd": 123,
"principalDeployedUsd": 123,
"strategyBalanceUsd": 123,
"totalSupplyUsd": 123,
"wAvgApy": 123,
"externalYieldInfo": {
"apy": "<string>",
"balance": "<string>",
"externalYieldSource": 1,
"lastUpdateTime": 123,
"yieldAccount": "<string>"
}
}
],
"pageInfo": {
"page": 1,
"pageSize": 1,
"totalItems": 1,
"totalPages": 1
},
"snapshotTs": 123
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}Get strategies
Returns a list of strategy data matching the filters.
curl --request POST \
--url https://tars.loopscale.com/v1/markets/strategy/infos \
--header 'Content-Type: application/json' \
--data '
{
"addresses": [
"<string>"
],
"collateralTermsAssetFilter": [
"<string>"
],
"overridePageSize": true,
"page": 1,
"pageSize": 1,
"principalMints": [
"<string>"
],
"showArchived": true,
"sortDirection": 1,
"sortType": 1,
"userAddress": "<string>"
}
'import requests
url = "https://tars.loopscale.com/v1/markets/strategy/infos"
payload = {
"addresses": ["<string>"],
"collateralTermsAssetFilter": ["<string>"],
"overridePageSize": True,
"page": 1,
"pageSize": 1,
"principalMints": ["<string>"],
"showArchived": True,
"sortDirection": 1,
"sortType": 1,
"userAddress": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
addresses: ['<string>'],
collateralTermsAssetFilter: ['<string>'],
overridePageSize: true,
page: 1,
pageSize: 1,
principalMints: ['<string>'],
showArchived: true,
sortDirection: 1,
sortType: 1,
userAddress: '<string>'
})
};
fetch('https://tars.loopscale.com/v1/markets/strategy/infos', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tars.loopscale.com/v1/markets/strategy/infos",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'addresses' => [
'<string>'
],
'collateralTermsAssetFilter' => [
'<string>'
],
'overridePageSize' => true,
'page' => 1,
'pageSize' => 1,
'principalMints' => [
'<string>'
],
'showArchived' => true,
'sortDirection' => 1,
'sortType' => 1,
'userAddress' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://tars.loopscale.com/v1/markets/strategy/infos"
payload := strings.NewReader("{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://tars.loopscale.com/v1/markets/strategy/infos")
.header("Content-Type", "application/json")
.body("{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://tars.loopscale.com/v1/markets/strategy/infos")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"addresses\": [\n \"<string>\"\n ],\n \"collateralTermsAssetFilter\": [\n \"<string>\"\n ],\n \"overridePageSize\": true,\n \"page\": 1,\n \"pageSize\": 1,\n \"principalMints\": [\n \"<string>\"\n ],\n \"showArchived\": true,\n \"sortDirection\": 1,\n \"sortType\": 1,\n \"userAddress\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"aggregate": {
"count": 1,
"expected24hInterestUsd": 123,
"interestAccruedUsd": 123,
"interestEarnedAllTimeUsd": 123,
"principalDeployedUsd": 123,
"strategyBalanceUsd": 123,
"totalSupplyUsd": 123,
"wAvgApy": 123
},
"items": [
{
"borrowCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"strategy": {
"activeLoanCount": "<string>",
"address": "<string>",
"borrowCap1hrAmount": "<string>",
"borrowCap1hrPeriodStart": "<string>",
"borrowCap24hrAmount": "<string>",
"borrowCap24hrPeriodStart": "<string>",
"bump": 1,
"closed": true,
"createdAt": "<string>",
"cumulativeInterestAccrued": "<string>",
"cumulativeLoanCount": "<string>",
"cumulativePrincipalOriginated": "<string>",
"currentDeployedAmount": "<string>",
"externalYieldAmount": "<string>",
"externalYieldSource": 1,
"feeClaimable": "<string>",
"interestFee": "<string>",
"interestPerSecond": 123,
"lastAccruedTimestamp": "<string>",
"lastInteractedTime": "<string>",
"lastInteractedTxn": "<string>",
"lender": "<string>",
"liquidityBuffer": "<string>",
"marketInformation": "<string>",
"nonce": "<string>",
"originationCap": "<string>",
"originationFee": "<string>",
"originationsEnabled": true,
"outstandingInterestAmount": "<string>",
"principalFee": "<string>",
"principalMint": "<string>",
"supplyCap1hrAmount": "<string>",
"supplyCap1hrPeriodStart": "<string>",
"supplyCap24hrAmount": "<string>",
"supplyCap24hrPeriodStart": "<string>",
"tokenBalance": "<string>",
"version": 1,
"withdrawCap1hrAmount": "<string>",
"withdrawCap1hrPeriodStart": "<string>",
"withdrawCap24hrAmount": "<string>",
"withdrawCap24hrPeriodStart": "<string>",
"writeVersion": "<string>",
"id": 1
},
"supplyCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"terms": {
"assetTerms": {},
"borrowCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
},
"supplyCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
},
"withdrawCaps": {
"max1hr": "<string>",
"max24hr": "<string>",
"maxOutstanding": "<string>"
}
},
"withdrawCapMonitor": {
"principal1hr": "<string>",
"principal24hr": "<string>",
"startTime1hr": "<string>",
"startTime24hr": "<string>"
},
"expected24hInterestUsd": 123,
"interestAccruedUsd": 123,
"interestEarnedAllTimeUsd": 123,
"principalDeployedUsd": 123,
"strategyBalanceUsd": 123,
"totalSupplyUsd": 123,
"wAvgApy": 123,
"externalYieldInfo": {
"apy": "<string>",
"balance": "<string>",
"externalYieldSource": 1,
"lastUpdateTime": 123,
"yieldAccount": "<string>"
}
}
],
"pageInfo": {
"page": 1,
"pageSize": 1,
"totalItems": 1,
"totalPages": 1
},
"snapshotTs": 123
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}{
"error": {
"code": 400,
"message": "Request could not be processed."
}
}Body
lending strategy filter
When non-empty on the summary endpoint, run a secondary query to fetch
terms.asset_terms only for these collateral mints. Empty (default) =
terms.asset_terms stays empty, no secondary query is run. Ignored by
the full /strategy/infos endpoint.
x >= 0x >= 0x >= 0x >= 0Response
List of strategies that match filter
Filter-scoped aggregate over the full matched strategy set. USD fields use the request's pinned oracle snapshot. APYs are fractional (0.085 = 8.5%).
wAvgApy and expected24hInterestUsd are blended: they include both
deployed-side interest (from ledgers.apy) and external-yield-side yield
(from external_yield_vaults.apy). Idle principal sitting in the strategy's
token account contributes to strategyBalanceUsd and drags the weighted
average with an implicit 0% APY, matching realized-yield semantics.
Strategies are lender-side only — no role ambiguity; expected24hInterestUsd
always represents accrual to the lender.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Pagination envelope shared across paginated listing endpoints
(/loans/info, /strategy/infos, /loop/info/v2, /lending_vaults/user/v2).
totalItems / totalPages are filter-scoped, not page-scoped.
Show child attributes
Show child attributes