Screen companies
GET
/api/v1/public/screener25 credits / callAPI key required
Screen the company universe with sector/industry, price, volume, float, shares-outstanding, market-cap, and cash-runway filters. Supports numeric-range and text filters with sorting and pagination.
Parameters
Query
Filter by industry name (exact match)
Minimum stock price
Maximum stock price
Minimum trading volume
Maximum trading volume
Minimum cash runway in months
Maximum cash runway in months
Minimum float shares
Maximum float shares
Minimum shares outstanding
Maximum shares outstanding
Minimum computed market cap
Maximum computed market cap
Column to sort by
Sort direction
Maximum number of results (1-500, default 50)
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/screener?industry=Biotechnology&sortBy=volume&sortOrder=desc&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/screener?industry=Biotechnology&sortBy=volume&sortOrder=desc&limit=10&offset=0example · 200
{
"data": {
"companies": [
{
"ticker": "ADTX",
"price": "0.0145",
"change_percent": "12.0155",
"volume": "820775282",
"industry": "Biotechnology",
"cash_runway_months": "-2.40",
"shares_outstanding": "815921",
"float": "33499",
"market_cap_computed": "11015",
"updated_at": "2026-06-16T13:30:03.284Z"
},
{
"ticker": "GPUS",
"price": "0.2270",
"change_percent": "-16.3288",
"volume": "709068935",
"industry": "Aerospace & Defense",
"cash_runway_months": "-0.90",
"shares_outstanding": "461607002",
"float": "435248133",
"market_cap_computed": "117709786",
"updated_at": "2026-06-16T13:30:03.284Z"
},
{
"ticker": "PAVS",
"price": "0.2065",
"change_percent": "9.7420",
"volume": "671126305",
"industry": "Packaged Foods",
"cash_runway_months": null,
"shares_outstanding": "1559961",
"float": "22703",
"market_cap_computed": "374235",
"updated_at": "2026-06-16T13:30:03.284Z"
}
],
"pagination": {
"total": 14648,
"limit": 3,
"offset": 0
}
}
}