Search companies
GET
/api/v1/public/companies/search1 credit / callAPI key required
Search for companies by name or ticker symbol.
Parameters
Query
Search query (company name or ticker)
Maximum number of results (1-100, default 20)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/search?q=apple&limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/search?q=apple&limit=10example · 200
{
"data": {
"companies": [
{
"cik": "0000320193",
"companyName": "Apple Inc.",
"tickers": [
"AAPL"
],
"exchanges": [
"Nasdaq"
],
"sicCode": "3571",
"sicDescription": "Electronic Computers",
"totalFilings": 2234,
"volume": 45729484,
"cashRunwayMonths": null,
"sharesOutstanding": 14687356000,
"computedFloat": 13515457484,
"ipoDate": "1980-12-12"
},
{
"cik": "0001418121",
"companyName": "Apple Hospitality REIT, Inc.",
"tickers": [
"APLE"
],
"exchanges": [
"NYSE"
],
"sicCode": "6798",
"sicDescription": "Real Estate Investment Trusts",
"totalFilings": 1397,
"volume": 3039892,
"cashRunwayMonths": null,
"sharesOutstanding": 236067554,
"computedFloat": 218554706,
"ipoDate": "2015-05-18"
},
{
"cik": "0000063330",
"companyName": "MAUI LAND & PINEAPPLE CO INC",
"tickers": [
"MLP"
],
"exchanges": [
"NYSE"
],
"sicCode": "6500",
"sicDescription": "Real Estate",
"totalFilings": 1124,
"volume": 14677,
"cashRunwayMonths": null,
"sharesOutstanding": 19864606,
"computedFloat": 6670725,
"ipoDate": "1994-04-25"
}
],
"total": 7,
"limit": 3,
"offset": 0
}
}