company_profile

FinancialModelingPrep.company_profileFunction
company_profile(fmp, symbol)

Returns the company profile for the specified symbol.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.

See Company-Profile for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the company profile for AAPL
data = company_profile(fmp, "AAPL")

key_executives

FinancialModelingPrep.key_executivesFunction
key_executives(fmp, symbol)

Returns the key executives for the specified symbol.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.

See Key-Executives for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the key executives for AAPL
data = key_executives(fmp, "AAPL")

company_outlook

FinancialModelingPrep.company_outlookFunction
company_outlook(fmp, symbol, accessor)

Returns a JSON table or dictionary of the company outlook for the specified symbol.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.
  • accessor::Symbol: An accessor Symbol which contains a nested array.

See Company-Outlook for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the company outlook for AAPL
data = company_outlook(fmp, "AAPL")

stock_peers

FinancialModelingPrep.stock_peersFunction
stock_peers(fmp, symbol)

Returns a JSON array of the stock peers for the specified symbol.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.

See Stock-Peers for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the stock peers for AAPL
data = stock_peers(fmp, "AAPL")

nyse_schedule

FinancialModelingPrep.nyse_scheduleFunction
nyse_schedule(fmp)

Returns a JSON dictionary of the NYSE schedule including market hours and market holidays.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.

See NYSE-Schedule for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the NYSE holiday schedule
data = nyse_schedule(fmp)[:stockMarketHolidays]

delisted_companies

FinancialModelingPrep.delisted_companiesFunction
delisted_companies(fmp, params...)

Returns delisted companies.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • params...: Additional keyword query params.

See Delisted-Companies for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the first page of delisted companies
data = delisted_companies(fmp, page = 0)

symbol_changes

FinancialModelingPrep.symbol_changesFunction
symbol_changes(fmp)

Returns changed symbols.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.

See Symbol-Change for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get symbol changes
data = symbol_changes(fmp)

company_information

FinancialModelingPrep.company_informationFunction
company_information(fmp, symbol)

Returns company information for the specified symbol.

Arguments

  • fmp::FMP: A Financial Modeling Prep instance.
  • symbol::String: A stock symbol.

See Stock-Peers for more details.

Examples

# create a FMP API instance
fmp = FMP()

# get the company information for AAPL
data = company_information(fmp, "AAPL")