Securities by Exchange

Securities by Exchange Csharp API Documentation

Returns Securities traded on the Stock Exchange with `identifier`

API Class:
Intrinio.SDK.Api.StockExchangeApi
Instance Method:
GetStockExchangeSecurities()

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 GetStockExchangeSecuritiesExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var stockExchangeApi = new StockExchangeApi();
string identifier = "USCOMP";
int? pageSize = 100;
string nextPage = null;
ApiResponseStockExchangeSecurities result = stockExchangeApi.GetStockExchangeSecurities(identifier, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstringA Stock Exchange identifier (MIC or Intrinio ID) 
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.ApiResponseStockExchangeSecurities

Properties

NameTypeDescription
SecuritiesListThe securities traded on the Stock Exchange  
StockExchangeStockExchangeThe Stock Exchange resolved from the given identifier  
NextPagestringThe token required to request the next page of the data. If null, no further results are available.  
object
Intrinio.SDK.Model.SecuritySummary

Properties

NameTypeDescription
IdstringThe Intrinio ID for Security  
CompanyIdstringThe Intrinio ID for the Company for which the Security is issued  
NamestringThe name of the Security  
CodestringA 2-3 digit code classifying the Security (reference)  
CurrencystringThe currency in which the Security is traded on the exchange  
TickerstringThe common/local ticker of the Security  
CompositeTickerstringThe country-composite ticker of the Security  
FigistringThe OpenFIGI identifier  
CompositeFigistringThe country-composite OpenFIGI identifier  
ShareClassFigistringThe global-composite OpenFIGI identifier  
PrimaryListingbool?If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange  
object
Intrinio.SDK.Model.StockExchange

Properties

NameTypeDescription
IdstringThe Intrinio ID for the Stock Exchange  
NamestringThe name of the exchange  
MicstringThe Market Identifier Code (MIC) of the exchange  
AcronymstringThe acronym of the exchange's name  
CitystringThe city in which the exchange is located  
CountrystringThe country in which the exchange is located  
CountryCodestringThe 2-digit code of the exchange's country  
WebsitestringThe website of the exchange  
FirstStockPriceDateDateTime?The earliest date for which Intrinio has stock prices for the exchange  
LastStockPriceDateDateTime?The latest date for which Intrinio has stock prices for the exchange