Skip to main content
GET
/
strategies
/
{strategyId}
/
quote
Get strategy quote
curl --request GET \
  --url https://api.deframe.io/strategies/{strategyId}/quote \
  --header 'x-api-key: <api-key>'
{
  "expectedReturn": "1000000",
  "fee": "1000000",
  "apy": 123
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain from your Deframe dashboard.

Path Parameters

strategyId
string
required

Strategy ID or slug

Query Parameters

amount
string
required

Amount to deposit

Example:

"1000000"

wallet
string
required

User wallet address

Example:

"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"

Response

200 - application/json

Quote calculated successfully

expectedReturn
string
required

Large integer represented as string (amount in token's smallest unit)

Example:

"1000000"

fee
string
required

Large integer represented as string (amount in token's smallest unit)

Example:

"1000000"

apy
number
required