Skip to content

Commit

Permalink
Updated spec with case-sensitive query params
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpolygon committed Dec 11, 2023
1 parent 836d813 commit 44d5ca9
Showing 1 changed file with 11 additions and 11 deletions.
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 @@ -15381,7 +15381,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 @@ -17171,7 +17171,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 @@ -17354,7 +17354,7 @@
"description": "Get aggregate bars for a stock over a given date range in custom time window sizes.\n\u003cbr /\u003e\n\u003cbr /\u003e\nFor example, if timespan = ‘minute’ and multiplier = ‘5’ 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 @@ -18573,7 +18573,7 @@
"description": "Get the current minute, day, and previous day’s aggregate, as well as the last trade and quote for all traded cryptocurrency symbols.\n\u003cbr /\u003e\n\u003cbr /\u003e\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 @@ -19834,7 +19834,7 @@
"description": "Get the current minute, day, and previous day’s aggregate, as well as the last trade and quote for all traded forex symbols.\n\u003cbr /\u003e\n\u003cbr /\u003e\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 @@ -20783,7 +20783,7 @@
"description": "Get the most up-to-date market data for all traded stock symbols.\n\u003cbr /\u003e\n\u003cbr /\u003e\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 @@ -21198,7 +21198,7 @@
"description": "Get the most up-to-date market data for a single traded stock ticker.\n\u003cbr /\u003e\n\u003cbr /\u003e\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

0 comments on commit 44d5ca9

Please sign in to comment.