Watch Lists
A Watch List
Get a specific watchlist
Field | Description |
---|---|
id | Watchlist's Id |
public_id | The watchlist's public Id to be used for sharing |
name | Watchlists's name |
items | An array of the watchlist items |
symbol | Item'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
Field | Description |
---|---|
watchlists | An array of watchlists |
id | Watchlist's Id |
name | Watchlists's name |
public_id | The 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"
}
]
}
}
Updated 13 days ago