Returns data from the [stocks] table.
This table provides adjusted and unadjusted EOD stock prices for more than 20,000 US public companies. The data includes:
For more information on the dataset and the available indicators, please review the stocks table on the Explorer page.
The table is queried via the following endpoint
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-keyThe queries are authenticated and filtered using query parameters. A query parameter specifies a particular option or filter for the data to be returned. Examples of query parameter include the data format to be returned (format), the table columns to return (fields) or a filter to be applied (tablename). These are appended to the endpoint above, following a ?. The most important of these is your API key (api_key) which is used to authenticate you. Without a valid API key, results will not be returned.
The stocks table supports the following query parameters.
| Parameter | Description | Default | Examples |
|---|---|---|---|
| format | The format of the results to be returned. | csv | format=json |
| years | Bulk download only. History length to download: 5, 10, or full. Defaults to the longest history included in your subscription that has a published bulk file. Alias: history. | max available | years=5 |
| from | Specifies the filing date from which to return data. | 30 days ago | from=2023-08-01 |
| to | Specifies the filing date to return data until. | prior day | to=2023-08-31 |
| fields | The fields (table columns) to return. | all | fields=ticker,date,close |
| lastupdated | Specifies the last date on which a record was updated. This can be used to retrieve recently updated records. | lastupdated.gte=2023-09-31 | |
| ticker | Returns results for the specified ticker. Multiple tickers should be separated with a comma(,). | all | ticker=TSLA |
| limit | The number of records to return. | 10000 | limit=100000 |
| skip | The number of results to skip before returning data. | 0 | skip=10000 |
| sort | The field used to sort the data and the sort method (asc/desc). | date.desc | sort=close.asc |
Return all price data for a ticker
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&ticker=AAPLReturn all price data for multiple tickers
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&ticker=AAPL,TSLAReturn price data that has been updated since a specified date
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&lastupdated.gte=2023-08-01Return all price data for a date range
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&from=2023-08-01&to=2023-08-31Return specific columns from price data for a ticker in a date range sorted by volume
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&ticker=AAPL&from=2023-08-01&to=2023-08-31&fields=date,open,volume&sort=volume.descIn Google Sheets, retrieve equity prices for a single ticker (AAPL) with IMPORTDATA. You can change the query parameters (ticker, dates, fields, filters, and so on) in the same way as the Examples in the preceding section. Paste this formula into a cell (A1):
=IMPORTDATA("https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&format=csv&ticker=AAPL")Download the [stocks] table as a compressed CSV. The API responds with a redirect to a time-limited download URL.
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&bulk=TrueUse years=5, years=10, or years=full to select history length when split bulk files are published. If years is omitted, the longest history included in your subscription is used.
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&bulk=True&years=5Example using curl (follow redirects and write the file):
curl -L -o stocks.csv.zip "https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&bulk=True"Check the bulk file status (name, size, last modified) without downloading:
https://api.sharadar.com/v1.0/data/stocks?api_key=test-api-key&status=TrueExample response:
{
"table": "stocks",
"name": "stocks.csv.zip",
"size": 997066398,
"sizeLabel": "950.9 MB",
"modified": "2026-07-16T03:53:42.690000+00:00"
}