Stocks & Equities
Core equity coverage: search the ticker universe, pull quote and reference data, and download historical prices adjusted for splits and dividends.
Stocks API
The Stocks API provides comprehensive equity market data for publicly traded companies worldwide. This API supports multiple time frame aggregations. Essential for stock analysis, portfolio management, and trading strategy development.
/stocks/tickersRetrieves a comprehensive list of all available stock tickers with support for filtering by country and exchange.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| country | string | Optional | Filter tickers by listed market's region. view all values |
| exchange | string | Optional | Filter tickers by exchange. See Exchange Codes below for full list.view all values |
Examples:
https://api.axionquant.com/stocks/tickershttps://api.axionquant.com/stocks/tickers?country=america&exchange=NASDAQResponse Fields
id number
Unique identifier for the stock
name string
Full company name
ticker string
Stock ticker symbol (e.g., "MSFT", "AAPL")
symbol string
Full symbol with exchange prefix (e.g., "NASDAQ:MSFT")
exchange string
Exchange where stock is listed
market string
Market region (e.g., "america")
type string
Security type (e.g., common stock, preferred stock, dr)
All Stock Tickers
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4tickers = client.stocks.tickers(
5 country='america',
6 exchange='NASDAQ'
7)
8print(tickers)Response
[
{
"id": 10,
"name": "Zoompass Holdings, Inc.",
"ticker": "ZPAS",
"symbol": "OTC:ZPAS",
"exchange": "OTC",
"market": "america",
"type": "common stock"
},
{
"id": 11,
"name": "Roper Technologies, Inc.",
"ticker": "ROP",
"symbol": "NASDAQ:ROP",
"exchange": "NASDAQ",
"market": "america",
"type": "common stock"
},
{
"id": 4,
"name": "JFB Construction Holdings Class A",
"ticker": "JFB",
"symbol": "NASDAQ:JFB",
"exchange": "NASDAQ",
"market": "america",
"type": "common stock"
},
{
"id": 22,
"name": "Strive, Inc. Perf Pfd Registered Shs Series A",
"ticker": "SATA",
"symbol": "NASDAQ:SATA",
"exchange": "NASDAQ",
"market": "america",
"type": "preferred stock"
},
{
"id": 24,
"name": "Minth Group Limited Unsponsored ADR",
"ticker": "MNTHY",
"symbol": "OTC:MNTHY",
"exchange": "OTC",
"market": "america",
"type": "dr"
}
]/stocks/gainersRetrieves the top gaining stocks over a specified lookback period. Returns ticker symbols with their percentage change, sorted from highest gainer to lowest. Useful for identifying market momentum and trending securities.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| days | integer | Optional | Lookback period in days (default: 5) |
| limit | integer | Optional | Maximum number of results to return (default: 10) |
| market | string | Optional | Market filter (e.g., "america").view all values |
Examples:
https://api.axionquant.com/stocks/gainershttps://api.axionquant.com/stocks/gainers?days=30&limit=20Response Fields
ticker string
Stock ticker symbol
pctchange number
Percentage change over the lookback period
Stock Gainers
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4gainers = client.stocks.gainers(
5 days=5,
6 limit=10,
7 market='america'
8)
9print(gainers)Response
[
{
"ticker": "AAPL",
"pctchange": 2.345
},
{
"ticker": "MSFT",
"pctchange": 1.234
},
{
"ticker": "GOOGL",
"pctchange": 0.987
}
]/stocks/losersRetrieves the top losing stocks over a specified lookback period. Returns ticker symbols with their percentage change, sorted from most negative to least negative. Useful for identifying market weakness and potential reversals.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| days | integer | Optional | Lookback period in days (default: 5) |
| limit | integer | Optional | Maximum number of results to return (default: 10) |
| market | string | Optional | Market filter (e.g., "america").view all values |
Examples:
https://api.axionquant.com/stocks/losershttps://api.axionquant.com/stocks/losers?days=30&limit=20Response Fields
ticker string
Stock ticker symbol
pctchange number
Percentage change over the lookback period
Stock Losers
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4losers = client.stocks.losers(
5 days=5,
6 limit=10,
7 market='america'
8)
9print(losers)Response
[
{
"ticker": "TSLA",
"pctchange": -3.456
},
{
"ticker": "META",
"pctchange": -2.345
},
{
"ticker": "NFLX",
"pctchange": -1.234
}
]