You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Query all ticker symbols which are supported by Polygon.io. This API currently includes Stocks/Equities, Crypto, and Forex.
66
+
67
+
:param ticker: Specify a ticker symbol. Defaults to empty string which queries all tickers.
68
+
:param ticker_lt: Timestamp less than
69
+
:param ticker_lte: Ticker less than or equal to
70
+
:param ticker_gt: Ticker greater than
71
+
:param ticker_gte: Ticker greater than or equal to
72
+
:param type: Specify the type of the tickers. Find the types that we support via our Ticker Types API. Defaults to empty string which queries all types.
73
+
:param market: Filter by market type. By default all markets are included.
74
+
:param exchange: Specify the primary exchange of the asset in the ISO code format. Find more information about the ISO codes at the ISO org website. Defaults to empty string which queries all exchanges.
75
+
:param cusip: Specify the CUSIP code of the asset you want to search for. Find more information about CUSIP codes at their website. Defaults to empty string which queries all CUSIPs.
76
+
:param cik: Specify the CIK of the asset you want to search for. Find more information about CIK codes at their website. Defaults to empty string which queries all CIKs.
77
+
:param date: Specify a point in time to retrieve tickers available on that date. Defaults to the most recent available date.
78
+
:param search: Search for terms within the ticker and/or company name.
79
+
:param active: Specify if the tickers returned should be actively traded on the queried date. Default is true.
80
+
:param limit: Limit the size of the response, default is 100 and max is 1000.
81
+
:param sort: The field to sort the results on. Default is ticker. If the search query parameter is present, sort is ignored and results are ordered by relevance.
82
+
:param order: The order to sort the results on. Default is asc (ascending).
83
+
:param params: Any additional query params
84
+
:param raw: Return raw object instead of results object
Get a single ticker supported by Polygon.io. This response will have detailed information about the ticker and the company behind it.
106
+
107
+
:param ticker: The ticker symbol of the asset.
108
+
:param date: Specify a point in time to get information about the ticker available on that date. When retrieving information from SEC filings, we compare this date with the period of report date on the SEC filing.
109
+
:param params: Any additional query params
110
+
:param raw: Return raw object instead of results object
0 commit comments