API Key
Get a key

Search Companies

Search for public companies by name, ticker symbol, or CIK number.

GET /api/v1/companies/search Cost: Free

Parameters

ParameterTypeRequiredDescription
qstringRequiredSearch query (company name or ticker)
limitintegerOptional (20)Max results to return (max 100)

Code examples

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.beefi.ai/api/v1/companies/search?q=apple&limit=5"

Try it

GET /companies/search

Response

[
  {
    "cik": "0000320193",
    "name": "Apple Inc.",
    "ticker": "AAPL",
    "sic_code": "3571",
    "sic_description": "Electronic Computers",
    "state": "CA",
    "fiscal_year_end": "0930"
  }
]