✓ Verified 💻 Development ✓ Enhanced Data

Apipick Company Facts

Retrieve public company information by stock ticker symbol or SEC CIK number using the apipick Compa

Rating
4 (490 reviews)
Downloads
32,261 downloads
Version
1.0.0

Overview

Retrieve public company information by stock ticker symbol or SEC CIK number using the apipick Company Facts API.

Complete Documentation

View Source →

apipick Company Facts

Retrieve public company data via stock ticker symbol or SEC CIK number.

Endpoint

text
GET https://www.apipick.com/api/company/facts

Authentication: x-api-key: YOUR_API_KEY header required. Get a free API key at https://www.apipick.com/dashboard/api-keys

Request Parameters

Use either ticker or cik (not both):

ParameterDescription
tickerStock ticker symbol (e.g. AAPL, MSFT, GOOGL, TSLA)
cikSEC Central Index Key number (e.g. 0000320193)
bash
# By ticker
GET /api/company/facts?ticker=AAPL

# By CIK
GET /api/company/facts?cik=0000320193

Response

json
{
  "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"
  }
}

Error Codes

CodeMeaning
400Invalid or missing ticker/CIK parameter
401Missing or invalid API key
402Insufficient credits
Cost: 1 credit per request

Usage Pattern

  • Use $APIPICK_API_KEY env var as the x-api-key header value; if not set, ask the user for their apipick API key
  • Accept a company name, ticker, or CIK from the user
  • If the user provides a company name, infer the ticker (e.g. "Apple" → AAPL, "Microsoft" → MSFT)
  • Make the GET request with ticker or cik
  • Present results clearly; format market_cap as a readable figure (e.g. $3T, $250B)
See references/api_reference.md for full response field descriptions.

Installation

Terminal bash

openclaw install apipick-company-facts
    
Copied!

💻Code Examples

GET https://www.apipick.com/api/company/facts

get-httpswwwapipickcomapicompanyfacts.txt
**Authentication:** `x-api-key: YOUR_API_KEY` header required.
Get a free API key at https://www.apipick.com/dashboard/api-keys

## Request Parameters

Use **either** `ticker` or `cik` (not both):

| Parameter | Description |
|-----------|-------------|
| `ticker` | Stock ticker symbol (e.g. `AAPL`, `MSFT`, `GOOGL`, `TSLA`) |
| `cik` | SEC Central Index Key number (e.g. `0000320193`) |
example.sh
# By ticker
GET /api/company/facts?ticker=AAPL

# By CIK
GET /api/company/facts?cik=0000320193
example.json
{
  "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"
  }
}

Tags

#web_and-frontend-development #api

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author javainthinking
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install apipick-company-facts