List Companies
List and search companies by ticker, name, exchange, or SIC code
$0.01 per request
GET
/companiesRequest
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
| Name | Type | Required | Description |
|---|---|---|---|
| q | string | No | Search by ticker or company name (case-insensitive) |
| exchange | string | No | Filter by exchange (e.g., NYSE, Nasdaq) |
| sic_code | string | No | Filter by SIC industry code |
| limit | integer | No | Max results to return (default: 20, max: 100) |
| offset | integer | No | Number 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