GET/companies

List and search companies by ticker, name, exchange, or SIC code

$0.01 per request

Parameters

NameTypeRequiredDescription
qstringNoSearch by ticker or company name (case-insensitive)
exchangestringNoFilter by exchange (e.g., NYSE, Nasdaq)
sic_codestringNoFilter by SIC industry code
limitintegerNoMax results to return (default: 20, max: 100)
offsetintegerNoNumber of results to skip for pagination

Request

curl "https://api.redcent.io/companies?q=apple&limit=5" \
  -H "X-PAYMENT: <payment-token>"

Response

{
  "companies": [
    {
      "cik": "0000320193",
      "ticker": "AAPL",
      "name": "Apple Inc.",
      "exchange": "Nasdaq",
      "sicCode": "3571",
      "sicDescription": "Electronic Computers"
    }
  ],
  "count": 1,
  "total": 11234,
  "limit": 5,
  "offset": 0
}