Introduction

This API call is used to retrieve the list of symbols available in the daily historical stock
data. The results as either JSON or CSV. The API call takes in the symbol, and format (JSON or CSV) as parameters
and returns a list of symbols, the openfigi code and the description. The data can be returned in either JSON or CSV format. This can easily be 5000+ rows. 

Endpoint

/list-daily-stock-symbols/:format

Parameters

  • format (string, optional) – The format to return the data in. Valid options: ‘json’ or ‘csv’.

Examples

List of several example calls, URLs, and responses to show users how to interact with the API
call. These examples should include a variety of input parameters to demonstrate the different scenarios that the
API call can handle.

Related Calls

This is related to the daily end of day stock history

Error Handling

If no data comes back, please check for valid input parameters. Limitation: Only shows active symbols, not delisted or modified. Example: FB is not in the  list of active symbols. Of course META is. But if you query the daily-stock-history for FB it will be displayed, but ending June 13 2022. META is listed as a current symbol, but the history only goes back to the same date. 

Example Response

    [{
        "symbol":"A",
        "figi":"BBG000C2V541","name":
        "AGILENT TECHNOLOGIES INC"},
    {
        "symbol":"AA",
        "figi":"BBG00B3T3HK5",
        "name":"ALCOA CORP"},
    {
        "symbol":"AAC",
        "figi":"BBG00ZNL4489",
        "name":"ARES ACQUISITION CORP-A"
    }]