Skip to content

Tickers & Company

Access the list of all available companies in the database, or retrieve detailed profile information for a specific ticker.


List All Tickers

Returns every ticker with available financial data in the warehouse.

URL

GET /api/v1/tickers

Authentication

Requires API key via Authorization: Bearer header.

Example Request

Terminal window
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.finpoint.dev/api/v1/tickers"

Example Response

[
{
"ticker": "AAPL",
"company_name": "Apple Inc.",
"sector": "Technology",
"industry": "Consumer Electronics"
},
{
"ticker": "MSFT",
"company_name": "Microsoft Corp.",
"sector": "Technology",
"industry": "Software—Infrastructure"
},
{
"ticker": "NVDA",
"company_name": "NVIDIA CORP",
"sector": "Technology",
"industry": "Semiconductors"
}
]

Notes

  • Returns only tickers that have passed through the ETL pipeline and have available financial data
  • sector and industry may be null for some entities
  • Response is sorted alphabetically by ticker

Company Profile

Retrieve detailed company metadata for a specific ticker or CIK number.

URL

GET /api/v1/company/{ticker}

Parameters

ParameterTypeLocationRequiredDescription
tickerstringpathyesStock ticker symbol (e.g. NVDA, AAPL, MSFT)
cikstringquerynoCIK identifier as alternative to ticker (e.g. 0001045810)

Example Request — by Ticker

Terminal window
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.finpoint.dev/api/v1/company/NVDA"

Example Request — by CIK

Terminal window
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.finpoint.dev/api/v1/company/?cik=0001045810"

Example Response

{
"ticker": "NVDA",
"company_name": "NVIDIA CORP",
"cik": "0001045810",
"sector": "Technology",
"industry": "Semiconductors",
"sic_code": "3674",
"exchange": "NASDAQ",
"state_of_incorporation": "DE"
}

Error Responses

StatusCodeMeaning
404INVALID_TICKERTicker or CIK not found in the database
400MISSING_TICKERNo ticker or CIK parameter was provided

Notes

  • Use cik as a query parameter when you have a CIK number instead of a ticker
  • sic_code is the Standard Industrial Classification code
  • state_of_incorporation may be null for non-US entities