Historical Data

Historical Data Csharp API Documentation

Returns historical values for the given `tag` and the entity represented by the given `identifier`

API Class:
Intrinio.SDK.Api.HistoricalDataApi
Instance Method:
GetHistoricalData()

Stock Price Code Example

Use my API Key
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetHistoricalDataExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var historicalDataApi = new HistoricalDataApi();
string identifier = "AAPL";
string tag = "marketcap";
string frequency = "daily";
string type = null;
DateTime? startDate = DateTime.Parse("2015-01-01");
DateTime? endDate = null;
string sortOrder = "desc";
int? pageSize = 100;
string nextPage = null;
ApiResponseHistoricalData result = historicalDataApi.GetHistoricalData(identifier, tag, frequency, type, startDate, endDate, sortOrder, pageSize
        , nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstringAn identifier for an entity such as a Company, Security, Index, etc (Ticker, FIGI, ISIN, CUSIP, CIK, LEI, Intrinio ID) 
tagstringAn Intrinio data tag ID or code (reference) 
frequencystringReturn historical data in the given frequency[optional] [default to daily]  
typestringFilter by type, when applicable[optional]  
startDateDateTime?Get historical data on or after this date[optional]  
endDateDateTime?Get historical date on or before this date[optional]  
sortOrderstringSort by date `asc` or `desc`[optional] [default to desc]  
pageSizeint?The number of results to return[optional] [default to 100]  
nextPagestringGets the next page of data from a previous API call[optional]  


Return Type

object
Intrinio.SDK.Model.ApiResponseHistoricalData

Properties

NameTypeDescription
HistoricalDataList 
NextPagestringThe token required to request the next page of the data. If null, no further results are available.  
object
Intrinio.SDK.Model.HistoricalData

Properties

NameTypeDescription
DateDateTime?The date that the value is present  
Valuedecimal?The historical value