Search Companies
Search for public companies by name, ticker symbol, or CIK number.
GET
/api/v1/companies/search Cost: FreeParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| q | string | Required | Search query (company name or ticker) |
| limit | integer | Optional (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/searchResponse
[
{
"cik": "0000320193",
"name": "Apple Inc.",
"ticker": "AAPL",
"sic_code": "3571",
"sic_description": "Electronic Computers",
"state": "CA",
"fiscal_year_end": "0930"
}
]