본문으로 건너뛰기

List strategies – Earn API

업데이트됨:
Jul 31, 2026

개요

Active and closed strategies for a wallet, each with a live valuation, realized APY, fee/rebalance rollups, and a positions[] array. USDC values are decimal dollars.

Endpoint

GET https://earn-api.quicknode.dev/functions/v1/api/v1/strategies

Authorization

Include the published apikey header. This read request is public and does not require a SIWE signature.

매개변수

매개변수위치유형Required설명
지갑query문자열Owner wallet address.

Example request

curl --request GET \
--url 'https://earn-api.quicknode.dev/functions/v1/api/v1/strategies?wallet=0x1234567890abcdef1234567890abcdef12345678' \
--header 'Accept: application/json' \
--header 'apikey: <EARN_PUBLIC_API_KEY>'

답변

분야유형Required설명
strategiesarray<object>Active and in-progress strategies owned by the wallet.
closedStrategiesarray<object>Closed strategies owned by the wallet.
strategies[].id문자열Strategy UUID.
strategies[].wallet_address문자열Lowercased owner address.
strategies[].name문자열Strategy name.
strategies[].capital_usdc숫자Configured capital in decimal US dollars.
strategies[].delta_pct숫자Same-chain APY threshold in percentage points.
strategies[].cross_chain_delta_pct숫자아니요Cross-chain APY threshold; `0` inherits `delta_pct`.
strategies[].delta_confirmations정수Required consecutive threshold confirmations.
strategies[].max_positions정수Maximum vault positions.
strategies[].min_tvl_usd숫자Minimum vault TVL in decimal US dollars.
strategies[].min_liquidity_usd숫자Minimum vault liquidity in decimal US dollars.
strategies[].min_liquidity_entry_multiplier숫자Liquidity multiplier for new entries.
strategies[].chain_id정수Legacy primary chain ID.
strategies[].chain_idsstring | nullComma-separated authoritative chain IDs.
strategies[].apy_smoothing_minutes정수APY smoothing window in minutes.
strategies[].hidden_vault_keysarray<string>Vault keys hidden from the strategy.
strategies[].status문자열Strategy lifecycle status.
strategies[].active부울Whether the strategy is active.
strategies[].created_at문자열Creation timestamp.
strategies[].updated_at문자열Last-update timestamp.
strategies[].first_deposit_atstring | nullFirst-deposit timestamp.
strategies[].deactivated_atstring | nullDeactivation timestamp.
strategies[].final_value_usdcnumber | nullFinal strategy value in decimal US dollars.
strategies[].final_realized_apynumber | nullFinal realized APY percentage.
strategies[].covered부울아니요Whether the strategy uses OpenCover coverage.
strategies[].coverage_activated_atstring | null아니요Coverage activation timestamp.
strategies[].total_value_usdc숫자Live position value in decimal US dollars.
strategies[].pending_bridge_value_usdc숫자Value in pending bridges.
strategies[].pending_bridges_count정수Pending bridge count.
strategies[].net_value_usdc숫자Live value plus pending bridge value.
strategies[].realized_apynumber | nullAnnualized realized APY percentage.
strategies[].live_apynumber | null아니요Five-minute value-weighted position APY.
strategies[].strategy_apynumber | null아니요Value-weighted APY at the configured smoothing window.
strategies[].positionsarray<object>Live-valued vault positions.
strategies[].positions[].id문자열Position identifier.
strategies[].positions[].strategy_idstring | null아니요Owning strategy UUID. Present only on list responses.
strategies[].positions[].vault_namestring | nullVault display name, or null when unavailable.
strategies[].positions[].vault_address문자열Vault contract address.
strategies[].positions[].protocolstring | nullVault protocol name, or null when unavailable.
strategies[].positions[].chain_id정수아니요Chain where the vault is deployed. Absent on closed-strategy list positions.
strategies[].positions[].shares_rawstring | nullRaw ERC-4626 share balance.
strategies[].positions[].usdc_value숫자Position value in decimal US dollars.
strategies[].positions[].entry_apy숫자APY percentage at entry.
strategies[].positions[].initial_usd_valuenumber | null아니요USDC deposited into the position, in decimal dollars. Absent on closed-strategy list positions.
strategies[].positions[].paused부울아니요Whether the position is paused. Absent on closed positions.
strategies[].rebalance_count정수Completed rebalance count.
strategies[].total_fees_usdc숫자Total fees in decimal US dollars.

Example response

This abbreviated response uses synthetic wallet and strategy data:

{
"strategies": [
{
"id": "b7c1e2d3-0000-4000-8000-000000000001",
"wallet_address": "0x1234567890abcdef1234567890abcdef12345678",
"name": "My USDC Strategy",
"capital_usdc": 1000,
"chain_ids": "8453,42161",
"status": "active",
"positions": [
{
"vault_name": "Seamless USDC Vault",
"chain_id": 8453,
"usdc_value": 600.25
}
]
}
],
"closedStrategies": [
{
"id": "c8d2f1a4-0000-4000-8000-000000000002",
"name": "Closed USDC Strategy",
"status": "closed"
}
]
}

HTTP responses

상태설명
200The wallet's active and closed strategies.
400Missing or invalid `wallet` address.
429Rate limit exceeded. `Retry-After` (seconds) tells you when to retry. Reads, feedback, and push writes are keyed per IP; create/update/delete are keyed per wallet+IP; deposit/withdraw/claim calldata is keyed per strategy+IP.
500Internal server error.
OpenAPI source

This page is based on operation listStrategies in the Earn OpenAPI 3.1 specification.