Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rest and ws spec #149

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .polygon/rest.json
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
}
},
"StocksTickerPathParam": {
"description": "The ticker symbol of the stock/equity.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stocksTicker",
Expand All @@ -230,7 +230,7 @@
}
},
"TickersQueryParam": {
"description": "A comma separated list of tickers to get snapshots for.",
"description": "A case-sensitive comma separated list of tickers to get snapshots for. For example, AAPL,TSLA,GOOG. Empty string defaults to querying all tickers.",
"in": "query",
"name": "tickers",
"schema": {
Expand Down Expand Up @@ -3602,7 +3602,7 @@
"type": "boolean"
},
"t": {
"description": "The Unix Msec timestamp for the start of the aggregate window.",
"description": "The Unix Msec timestamp for the end of the aggregate window.",
"type": "integer"
},
"v": {
Expand Down Expand Up @@ -13387,7 +13387,7 @@
"description": "Get the open, close and afterhours prices of a stock symbol on a certain date.\n",
"parameters": [
{
"description": "The ticker symbol of the stock/equity.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stocksTicker",
Expand Down Expand Up @@ -15387,7 +15387,7 @@
"type": "boolean"
},
"t": {
"description": "The Unix Msec timestamp for the start of the aggregate window.",
"description": "The Unix Msec timestamp for the end of the aggregate window.",
"type": "integer"
},
"v": {
Expand Down Expand Up @@ -17177,7 +17177,7 @@
"description": "Get the previous day's open, high, low, and close (OHLC) for the specified stock ticker.\n",
"parameters": [
{
"description": "The ticker symbol of the stock/equity.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stocksTicker",
Expand Down Expand Up @@ -17360,7 +17360,7 @@
"description": "Get aggregate bars for a stock over a given date range in custom time window sizes.\n<br />\n<br />\nFor example, if timespan = \u2018minute\u2019 and multiplier = \u20185\u2019 then 5-minute bars will be returned.\n",
"parameters": [
{
"description": "The ticker symbol of the stock/equity.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stocksTicker",
Expand Down Expand Up @@ -18579,7 +18579,7 @@
"description": "Get the current minute, day, and previous day\u2019s aggregate, as well as the last trade and quote for all traded cryptocurrency symbols.\n<br />\n<br />\nNote: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST.\n",
"parameters": [
{
"description": "A comma separated list of tickers to get snapshots for.",
"description": "A case-sensitive comma separated list of tickers to get snapshots for. For example, AAPL,TSLA,GOOG. Empty string defaults to querying all tickers.",
"in": "query",
"name": "tickers",
"schema": {
Expand Down Expand Up @@ -19840,7 +19840,7 @@
"description": "Get the current minute, day, and previous day\u2019s aggregate, as well as the last trade and quote for all traded forex symbols.\n<br />\n<br />\nNote: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST.\n",
"parameters": [
{
"description": "A comma separated list of tickers to get snapshots for.",
"description": "A case-sensitive comma separated list of tickers to get snapshots for. For example, AAPL,TSLA,GOOG. Empty string defaults to querying all tickers.",
"in": "query",
"name": "tickers",
"schema": {
Expand Down Expand Up @@ -20789,7 +20789,7 @@
"description": "Get the most up-to-date market data for all traded stock symbols.\n<br />\n<br />\nNote: Snapshot data is cleared at 3:30am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST.\n",
"parameters": [
{
"description": "A comma separated list of tickers to get snapshots for.",
"description": "A case-sensitive comma separated list of tickers to get snapshots for. For example, AAPL,TSLA,GOOG. Empty string defaults to querying all tickers.",
"in": "query",
"name": "tickers",
"schema": {
Expand Down Expand Up @@ -21204,7 +21204,7 @@
"description": "Get the most up-to-date market data for a single traded stock ticker.\n<br />\n<br />\nNote: Snapshot data is cleared at 3:30am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST.\n",
"parameters": [
{
"description": "The ticker symbol of the stock/equity.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stocksTicker",
Expand Down
Loading