List Companies

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

$0.01 per request

GET/companies

Request

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

Response

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

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

Response Schema

Field
Type
Description
companies
array
Array of company objects matching the search criteria
count
integer
Number of companies returned in this response
total
integer
Total number of companies matching the query
limit
integer
Maximum number of results per page
offset
integer
Number of results skipped