Skip to main content
GET
/
strategy-info
/
{strategy_id}
Get strategy information
curl --request GET \
  --url https://api.breeze.baby/strategy-info/{strategy_id} \
  --header 'x-api-key: <api-key>'
{
  "strategy_id": "<string>",
  "strategy_name": "<string>",
  "assets": [
    "<string>"
  ],
  "apy": 123,
  "apy_per_asset": {
    "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": 0.046395890734657115,
    "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn": 0.05022988427340677,
    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": 5.660193556175348
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

strategy_id
string
required

Strategy identifier

Response

Strategy information retrieved successfully

strategy_id
string
required

Unique identifier for the strategy

strategy_name
string
required

Name of the strategy

assets
string[]
required

List of asset addresses included in the strategy

apy
number<double>
required

Overall annual percentage yield for the strategy

apy_per_asset
object
required

APY breakdown per asset address

Example:
{
"27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4": 0.046395890734657115,
"J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn": 0.05022988427340677,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v": 5.660193556175348
}