Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
watchlist
Get Account Watchlists
curl --request GET \
  --url https://api.aries.com/v1/accounts/{account_id}/watchlist \
  --header 'Authorization: Bearer <token>'
{
  "user_id": 98765,
  "watchlist": [
    {
      "id": 12345,
      "name": "Tech Stocks",
      "symbols": [
        "AAPL",
        "GOOGL",
        "MSFT",
        "TSLA"
      ]
    },
    {
      "id": 12346,
      "name": "Healthcare",
      "symbols": [
        "JNJ",
        "PFE",
        "UNH",
        "ABBV"
      ]
    },
    {
      "id": 12347,
      "name": "Energy",
      "symbols": [
        "XOM",
        "CVX",
        "COP"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

Account identifier

Example:

"acc_xyz789"

Response

Account watchlists retrieved successfully

user_id
integer<int64>

User ID associated with the account

watchlist
object[]

Array of watchlists