Skip to main content
GET
/
v1
/
watchlist
/
{watchlist_id}
Get Watchlist by ID
curl --request GET \
  --url https://api.aries.com/v1/watchlist/{watchlist_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 12345,
  "name": "Tech Stocks",
  "symbols": [
    "AAPL",
    "GOOGL",
    "MSFT",
    "TSLA",
    "NVDA"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

watchlist_id
string
required

Unique identifier of the watchlist

Example:

"watchlist_abc123"

Response

Watchlist retrieved successfully

id
integer<int64>

Watchlist ID

name
string

Watchlist name

symbols
string[]

List of stock symbols in the watchlist