/watchlist/{id}/symbols
https://api.livevol.com/v1/watchlist/ef7d1439-b6a5-4c99-86a9-af843e83e3f0/symbols
Name | Description | Type | Additional information |
---|---|---|---|
id |
Watchlist Id |
globally unique identifier |
Required |
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": "1eb00de9-40c8-469e-93fc-a573e96d39a3", "name": "default", "description": "", "symbols": [ "AAPL", "MSFT" ] }, { "id": "9c512c4b-ec76-4226-9f5c-a4c98a9ad7b2", "name": "customWL1", "description": "My Custom Watchlist", "symbols": [ "A" ] } ]
<watchlists xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <watchlist> <description></description> <id>1eb00de9-40c8-469e-93fc-a573e96d39a3</id> <name>default</name> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist> <watchlist> <description>My Custom Watchlist</description> <id>9c512c4b-ec76-4226-9f5c-a4c98a9ad7b2</id> <name>customWL1</name> <symbols> <symbol>A</symbol> </symbols> </watchlist> </watchlists>