Company Facts Lookup
Comprehensive information about any public company — market cap, industry details, SEC filings, and financial data — by stock ticker or CIK.
Pas encore de clé API ?
Connectez-vous à votre compte pour créer et gérer vos clés API.
Integration guide
Copy a snippet, replace your API key, run. Works in any HTTP client — examples below in cURL, JavaScript, and Python.
/api/company/factshttps://www.apipick.comGet comprehensive company information including market cap, industry details, and SEC filings
tickerstringoptionalStock ticker symbol (use either ticker or cik, not both) AAPL
cikstringoptionalCentral Index Key (CIK) number (use either ticker or cik, not both) 0000320193
# Search by ticker symbol
curl -X GET "https://www.apipick.com/api/company/facts?ticker=AAPL" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"
# Search by CIK number
curl -X GET "https://www.apipick.com/api/company/facts?cik=0000320193" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"{
"company_facts": {
"ticker": "AAPL",
"name": "Apple Inc.",
"cik": "0000320193",
"industry": "Technology",
"sector": "Consumer Electronics",
"exchange": "NASDAQ",
"market_cap": 3000000000000,
"number_of_employees": 164000,
"website_url": "https://www.apple.com",
"sec_filings_url": "https://www.sec.gov/edgar/browse/?CIK=320193"
}
}Comprehensive Company Data
Financial Data
Market capitalization, employee count, shares outstanding and other key financial metrics
Company Profile
Industry classification, sector details, location, and corporate structure information
SEC Information
Direct links to SEC filings, CIK numbers, and regulatory compliance data
Perfect for These Use Cases
Investment Research
Quick company analysis for investment decisions and portfolio research
Financial Analysis
Market cap analysis, sector comparison, and financial benchmarking
Due Diligence
Company verification for business partnerships and vendor assessments
AI Agent Research Workflows
Wire as an LLM tool to let AI agents autonomously look up company data during investment analysis, M&A research, and competitive intelligence pipelines
Reliable Data Sources
SEC Database Integration
- • Official SEC filings: 10-K, 10-Q, 8-K reports
- • CIK verification: Company identification keys
- • EDGAR database: Real-time regulatory data
- • SIC codes: Standard industrial classification
Market Data Coverage
- • All major exchanges: NYSE, NASDAQ, AMEX
- • Public companies: All SEC-registered entities
- • Current data: Up-to-date market information
- • Historical records: IPO dates and listings
Search Methods
Stock Ticker Search
Search using standard stock ticker symbols for quick company lookup.
Examples:
• AAPL - Apple Inc.
• MSFT - Microsoft Corporation
• GOOGL - Alphabet Inc.
• TSLA - Tesla Inc.
CIK Number Search
Use Central Index Key (CIK) numbers for precise SEC database queries.
Examples:
• 0000320193 - Apple Inc.
• 0000789019 - Microsoft Corporation
• 0001652044 - Alphabet Inc.
• 0001318605 - Tesla Inc.
Frequently Asked Questions
Q: What types of companies can I search for?
A: You can search for any publicly traded company that files with the SEC. This includes companies listed on NYSE, NASDAQ, and other major US exchanges.
Q: How current is the financial data?
A: The data is sourced from official SEC filings and is updated regularly. Market cap and other financial metrics reflect the most recent available filings.
Q: What is a CIK number and how do I find it?
A: CIK (Central Index Key) is a unique identifier assigned by the SEC to each company. You can find CIK numbers on the SEC's EDGAR database or by first searching with a ticker symbol using our tool.
Q: Can I use this API inside an AI agent or LLM workflow?
A: Absolutely. The endpoint accepts a single query parameter (ticker or cik) and returns a structured JSON object — ideal for defining as an OpenAI function, a Claude tool, or a LangChain tool. AI agents can autonomously invoke it to gather company intelligence during investment research, due diligence, or competitive analysis tasks.
Rate limits
Throttling is per API key, sliding 60-second window. Hit the limit and you get a clean 429 with a Retry-After header.
60req/min
Per API key, per endpoint. Sliding 60-second window.
3concurrent
Max simultaneous in-flight requests per API key.
X-RateLimit-LimitMaximum requests allowed per minuteX-RateLimit-RemainingRequests remaining in the current windowX-RateLimit-ResetSeconds until the current window resetsRetry-AfterSeconds to wait before retrying (only on 429)HTTP/1.1 429 Too Many Requests
Retry-After: 12
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 12
{
"error": "rate_limit_exceeded",
"message": "Rate limit exceeded: 60 requests/minute per API key. Retry after 12s.",
"retry_after": 12
}Use Company Facts in Claude Code & AI Agents
Install the official Claude Code skill to look up public company data directly inside your AI coding agent — market cap, employees, exchange, SEC filings and more via natural language.
Ask your AI agent naturally
Compatible platforms
Claude Code skill for APIpick Company Facts API
Returns official company name, industry, trading exchange, market cap, employee count, website URL, and SEC EDGAR filing link by ticker or CIK.