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/tickersAuthentication
Requires API key via Authorization: Bearer header.
Example Request
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
sectorandindustrymay benullfor 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
| Parameter | Type | Location | Required | Description |
|---|---|---|---|---|
ticker | string | path | yes | Stock ticker symbol (e.g. NVDA, AAPL, MSFT) |
cik | string | query | no | CIK identifier as alternative to ticker (e.g. 0001045810) |
Example Request — by Ticker
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://api.finpoint.dev/api/v1/company/NVDA"Example Request — by CIK
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
| Status | Code | Meaning |
|---|---|---|
404 | INVALID_TICKER | Ticker or CIK not found in the database |
400 | MISSING_TICKER | No ticker or CIK parameter was provided |
Notes
- Use
cikas a query parameter when you have a CIK number instead of a ticker sic_codeis the Standard Industrial Classification codestate_of_incorporationmay benullfor non-US entities