GET
/companiesList and search companies by ticker, name, exchange, or SIC code
$0.01 per request
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 |
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
}