https://api.snaptrade.com/api/v1/accounts/{accountId}/returnRates
Returns a list of rate of return percents for a given account. Will include timeframes available from the brokerage, for example "ALL", "1Y", "6M", "3M", "1M"
accountId
string (format: uuid)
required
Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.
userId
string
SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.
userSecret
SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the rotate user secret endpoint.
1Loading...
object
List of return rates with their timeframe
data
array of objects
List of return percentages
timeframe
The timeframe this return percent is reflecting
return_percent
number
The percent return of the portfolio, directly from the brokerage. 5.97 indicates a 5.97% return over the timeframe
created_date
string (format: date-time)
The date this was fetched
1{2 "data": [3 {4 "timeframe": "ALL",5 "return_percent": 5.97,6 "created_date": "2024-07-30T22:51:49.746Z"7 }8 ]9}