client.resources.<resource>.list
List a canonical read-model resource with cursor pagination.
| Package | @torq-finance/sdk |
|---|---|
| Signature | client.resources.markets.list<T>(query?) |
Behavior
Provides typed list calls for networks, deployments, assets, entities, oracles, markets, facilities, vaults, tranches, positions, activity, eligibility, recovery, partners, wrappers, fees, NAV reports, messaging, and allocation intelligence.
Example
const markets = await torq.resources.markets.list({ limit: 20 });Security boundary
Treat PageInfo and FreshnessEvidence as part of the response contract. Do not replace canonical API state with an RPC reconstruction.
Complete resource method catalogue
These are the named high-level investor resource methods in the current TypeScript client. Use the REST reference for control-plane and specialized operations that do not have a named SDK helper.
| SDK method | Governed operation |
|---|---|
client.resources.networks.list(query?) | GET /v1/networks |
client.resources.deployments.list(query?) | GET /v1/deployments |
client.resources.assets.list(query?) | GET /v1/assets |
client.resources.entities.list(query?) | GET /v1/entities |
client.resources.oracles.list(query?) | GET /v1/oracles |
client.resources.markets.list(query?) | GET /v1/markets |
client.resources['credit-facilities'].list(query?) | GET /v1/credit-facilities |
client.resources.vaults.list(query?) | GET /v1/vaults |
client.resources.tranches.list(query?) | GET /v1/tranches |
client.resources.funds.list(query?) | GET /v1/funds |
client.resources.positions.list(query?) | GET /v1/positions |
client.resources.activity.list(query?) | GET /v1/activity |
client.resources.eligibility.list(query?) | GET /v1/eligibility |
client.resources['liquidation-recovery'].list(query?) | GET /v1/liquidation-recovery |
client.resources['partner-programs'].list(query?) | GET /v1/partner-programs |
client.resources.wrappers.list(query?) | GET /v1/wrappers |
client.resources.fees.list(query?) | GET /v1/fees |
client.resources['nav-reports'].list(query?) | GET /v1/nav-reports |
client.resources['allocation-intelligence'].list(query?) | GET /v1/allocation-intelligence |
client.resources.messaging.list(query?) | GET /v1/messaging |
client.resources.assets.retrieve(resourceId) | GET /v1/assets/{resourceId} |
client.resources.markets.retrieve(resourceId) | GET /v1/markets/{resourceId} |
client.resources.markets.select(resourceId, fields) | GET /v1/markets/{resourceId}?fields=... |
client.resources.markets.allocators(resourceId, query?) | GET /v1/markets/{resourceId}/allocators |
client.resources.markets.history(resourceId, query?) | GET /v1/markets/{resourceId}/history |
client.resources.markets.activity(resourceId, query?) | GET /v1/markets/{resourceId}/activity |
client.resources.vaults.retrieve(resourceId) | GET /v1/vaults/{resourceId} |
client.resources.vaults.select(resourceId, fields) | GET /v1/vaults/{resourceId}?fields=... |
client.resources.vaults.allocations(resourceId, query?) | GET /v1/vaults/{resourceId}/allocations |
client.resources.vaults.liquidity(resourceId) | GET /v1/vaults/{resourceId}/liquidity |
client.resources.vaults.activity(resourceId, query?) | GET /v1/vaults/{resourceId}/activity |
client.resources.vaults.shareMobility(resourceId) | GET /v1/vaults/{resourceId}/share-mobility |
client.resources.vaults.history(resourceId, query?) | GET /v1/vaults/{resourceId}/history |
client.resources.funds.retrieve(resourceId) | GET /v1/funds/{resourceId} |
client.resources.funds.select(resourceId, fields) | GET /v1/funds/{resourceId}?fields=... |
client.resources.funds.holdings(resourceId, query?) | GET /v1/funds/{resourceId}/holdings |
client.resources.funds.epochs(resourceId, query?) | GET /v1/funds/{resourceId}/epochs |
See the API Reference for the governed endpoint contract and the workflow guide for canonical completion semantics.