List of Companies


Introduction

This endpoint returns the company index, or a list of available companies along with their tickers and stock exchanges.

You can fetch both the complete list by leaving the body empty, or narrow down your index to a specific group.

Set up

Endpoint

Endpoint


Get all available companies

Body
// leave empty for the full list

Response
{
    "data": [
        {
            "sku": "KRX_366030",
            "ticker": "366030",
            "exchange": "KRX",
            "name": "09Women Co Ltd",
            "shortName": "09Women",
            "enterpriseValue": 67.50376413346001,
            "countryCodeIso3": "KOR",
            "country": "South Korea",
            "region": "East Asia",
            "verticals": [
                "Consumer E-commerce",
                "Vertical E-commerce"
            ],
            "themes": [
                "FashionTech"
            ]
        },
        {
            "sku": "NAS_FLWS",
            "ticker": "FLWS",
            "exchange": "NAS",
            "name": "1-800-Flowers.com Inc",
            "shortName": "1-800-Flowers.com",
            "enterpriseValue": 283.180723,
            "countryCodeIso3": "USA",
            "country": "United States",
            "region": "North America",
            "verticals": [
                "Consumer E-commerce",
                "Vertical E-commerce"
            ],
            "themes": null
        },
        {
            "sku": "ETR_1U1",
            "ticker": "1U1",
            "exchange": "ETR",
            "name": "1&1 AG",
            "shortName": "1&1",
            "enterpriseValue": 5344.1369919682875,
            "countryCodeIso3": "DEU",
            "country": "Germany",
            "region": "Western Europe",
            "verticals": [
                "Telecom Service Providers"
            ],
            "themes": null
        },
        ...
    ],
    "meta": {
        "count": 15324
    }
}


Get a specific group


Choose from the following fields:

industries

search by a predefined list of sectors (look up here)

themes

search by a predefined list of tech themes (look up here)

regions

search by a predefined list of world regions

(choose from Africa, Central Asia, East Asia, Eastern Europe, Latin America, Middle East, North America, Northern Europe, Oceania, South Asia, South-East Asia, Southern Europe, Western Europe)

countries

search by a country ISO3 code (look up here)


Body
{
    "industries": [
        "Productivity Software",
        "Cloud Infrastructure"
    ],
    "themes": [
        "B2B SaaS"
    ],
    "regions": [
        "North America",
        "Northern Europe"
    ],
    "countries": [
        "USA",
        "SWE"
    ]
}
Response
{
    "data": [
        {
            "sku": "NAS_ADBE",
            "ticker": "ADBE",
            "exchange": "NAS",
            "name": "Adobe Inc",
            "shortName": "Adobe",
            "enterpriseValue": 107144.24,
            "countryCodeIso3": "USA",
            "country": "United States",
            "region": "North America",
            "verticals": [
                "Design & Engineering Software",
                "Content Management Software",
                "Productivity Software",
                "Vertical AI Applications",
                "Artificial Intelligence"
            ],
            "themes": [
                "B2B SaaS",
                "Horizontal SaaS",
                "MarTech"
            ]
        },
        {
            "sku": "NAS_AKAM",
            "ticker": "AKAM",
            "exchange": "NAS",
            "name": "Akamai Technologies Inc",
            "shortName": "Akamai",
            "enterpriseValue": 18635.73045,
            "countryCodeIso3": "USA",
            "country": "United States",
            "region": "North America",
            "verticals": [
                "Cloud Infrastructure"
            ],
            "themes": [
                "B2B SaaS",
                "Horizontal SaaS"
            ]
        },
        {
            "sku": "NAS_GOOGL",
            "ticker": "GOOGL",
            "exchange": "NAS",
            "name": "Alphabet Inc",
            "shortName": "Alphabet",
            "enterpriseValue": 3572356.5,
            "countryCodeIso3": "USA",
            "country": "United States",
            "region": "North America",
            "verticals": [
                "Search Engines",
                "AdTech Software",
                "Streaming",
                "Cloud Infrastructure",
                "AI Conglomerates",
                "Productivity Software"
            ],
            "themes": [
                "B2B SaaS",
                "Horizontal SaaS",
                "MarTech",
                "DeepTech",
                "Consumer SaaS",
                "Generative AI"
            ]
        },
        ...
    ],
    "meta": {
        "count": 47
    }
}