/watchlist/symbols
https://api.livevol.com/v1/watchlist/symbols
Name | Description | Type | Additional information |
---|---|---|---|
symbols |
Symbols collection |
Collection of string |
None. |
{ "symbols": [ "AAPL", "MSFT" ] }
<watchlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist>
Collection of WatchlistResult
Name | Description | Type | Additional information |
---|---|---|---|
id |
Watchlist Id |
globally unique identifier |
None. |
name |
A watchlist name |
string |
None. |
description |
A watchlist description |
string |
None. |
symbols |
Symbols collection in current watchlist |
Collection of string |
None. |
[ { "id": "bc77601b-fd7c-4017-8908-287edcc1e067", "name": "default", "description": "", "symbols": [ "AAPL", "MSFT" ] }, { "id": "2abfe76c-8533-440c-ba3f-e2bbcc4624d5", "name": "customWL1", "description": "My Custom Watchlist", "symbols": [ "A" ] } ]
<watchlists xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <watchlist> <description></description> <id>bc77601b-fd7c-4017-8908-287edcc1e067</id> <name>default</name> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist> <watchlist> <description>My Custom Watchlist</description> <id>2abfe76c-8533-440c-ba3f-e2bbcc4624d5</id> <name>customWL1</name> <symbols> <symbol>A</symbol> </symbols> </watchlist> </watchlists>