Watch Lists

A Watch List

Get a specific watchlist

FieldDescription
idWatchlist's Id
public_idThe watchlist's public Id to be used for sharing
nameWatchlists's name
itemsAn array of the watchlist items
symbolItem's symbol

Response

{
   "watchlist":{
      "name":"default",
      "id":"default",
      "public_id":"public-atea42pd",
      "items":{
         "item":[
            {
               "symbol":"AAPL",
               "id":"aapl"
            },
            {
               "symbol":"AMZN",
               "id":"amzn"
            }
         ]
      }
   }
}

Watchlists

Get all watch lists for a user

FieldDescription
watchlistsAn array of watchlists
idWatchlist's Id
nameWatchlists's name
public_idThe watchlist's public Id to be used for sharing

Response

{
   "watchlists":{
      "watchlist":[
         {
            "name":"default",
            "id":"default",
            "public_id":"public-atea42pd"
         },
         {
            "name":"a c d",
            "id":"a-c-d",
            "public_id":"public-5672lg0a"
         }
      ]
   }
}