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/:ticker/pricesRetrieves comprehensive historical price data for a specific stock. This powerful endpoint supports multiple time frame aggregations (daily, weekly, monthly, quarterly, yearly) and time-based filtering.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol (e.g., "AAPL", "MSFT", "GOOGL") |
Query Parameters
| Parameter | Type | Required | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| frame | string | Optional | Time frame for price aggregation. Default:
| ||||||||||||
| to | string | Optional | End date for historical data (ISO 8601 format). If not provided, returns data up to the latest available. | ||||||||||||
| from | string | Optional | Start date for historical data (ISO 8601 format). Automatically clamped by the system if too far in the past. |
Examples:
https://api.axionquant.com/stocks/AAPL/priceshttps://api.axionquant.com/stocks/MSFT/prices?frame=weekly&from=2024-06-01&to=2024-12-31Response Fields
time string
ISO 8601 timestamp of the data point
ticker string
Stock ticker symbol
open string
Opening price (decimal string)
high string
Highest price during the period
low string
Lowest price during the period
close string
Closing price
volume string
Number of shares traded
Historical Stock Prices
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4prices = client.stocks.prices('AAPL',
5 frame='daily',
6 from_date='2025-12-01',
7 to_date='2025-12-19'
8)
9print(prices)Response (Daily Frame)
[
{
"time": "2025-12-19T19:03:05.000Z",
"ticker": "AAPL",
"open": "272.1400",
"high": "272.9200",
"low": "270.2700",
"close": "270.6700",
"volume": "43267805"
},
{
"time": "2025-12-18T14:30:00.000Z",
"ticker": "AAPL",
"open": "273.6100",
"high": "273.6300",
"low": "266.9500",
"close": "272.1900",
"volume": "51600000"
}
]/stocks/list/marketRetrieves all unique market values available in the stocks universe. Filter by market region (e.g., "america", "europe").
Examples:
https://api.axionquant.com/stocks/list/marketList by Market
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('market')
5print(values)Response
[
"america",
"australia",
"canada",
"china",
"germany",
"hongkong",
"india",
"japan",
"korea",
"ksa",
"mexico",
"singapore",
"uk"
]/stocks/list/countryRetrieves all unique country values available in the stocks universe. Filter by country name or code.
Examples:
https://api.axionquant.com/stocks/list/countryList by Country
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('country')
5print(values)Response
[
"Aland Islands",
"Anguilla",
"Argentina",
"Australia",
"Austria",
"Azerbaijan",
"Bahamas",
"Bahrain",
"Bangladesh",
"Barbados",
"Belgium",
"Bermuda",
"Brazil",
"British Virgin Islands",
"Bulgaria",
"Cambodia",
"Cameroon",
"Canada",
"Cayman Islands",
"Chile",
"China",
"Colombia",
"Cyprus",
"Czech Republic",
"Denmark",
"Dominican Republic",
"Egypt",
"El Salvador",
"Estonia",
"Faroe Islands",
"Finland",
"France",
"Gabon",
"Germany",
"Gibraltar",
"Greece",
"Hong Kong",
"Hungary",
"Iceland",
"India",
"Indonesia",
"Ireland",
"Israel",
"Italy",
"Japan",
"Jordan",
"Kazakhstan",
"Kenya",
"La Reunion",
"Liberia",
"Liechtenstein",
"Lithuania",
"Luxembourg",
"Macau",
"Macedonia",
"Malaysia",
"Malta",
"Mauritius",
"Mexico",
"Monaco",
"Mongolia",
"Morocco",
"Mozambique",
"Netherlands",
"New Zealand",
"Nigeria",
"Norway",
"Oman",
"Pakistan",
"Panama",
"Papua New Guinea",
"Peru",
"Philippines",
"Poland",
"Portugal",
"Puerto Rico",
"Qatar",
"Romania",
"Russian Federation",
"Saudi Arabia",
"Singapore",
"Slovenia",
"South Africa",
"South Korea",
"Spain",
"Sweden",
"Switzerland",
"Taiwan",
"Tanzania",
"Thailand",
"Turkey",
"Ukraine",
"United Arab Emirates",
"United Kingdom",
"United States",
"Uruguay",
"Uzbekistan",
"Vietnam",
"Zambia",
"america",
"australia",
"canada",
"china",
"germany",
"hongkong",
"india",
"japan",
"korea",
"ksa",
"mexico",
"singapore",
"uk"
]/stocks/list/currencyRetrieves all unique currency values available in the stocks universe. Filter by trading currency.
Examples:
https://api.axionquant.com/stocks/list/currencyList by Currency
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('currency')
5print(values)Response
[
"AUD",
"CAD",
"CHF",
"CNY",
"DKK",
"EUR",
"GBP",
"GBX",
"HKD",
"HUF",
"INR",
"JPY",
"KRW",
"MXN",
"NOK",
"NZD",
"PLN",
"SAR",
"SEK",
"SGD",
"USD"
]/stocks/list/sectorRetrieves all unique sector values available in the stocks universe. Filter by sector classification.
Examples:
https://api.axionquant.com/stocks/list/sectorList by Sector
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('sector')
5print(values)Response
[
"Commercial Services",
"Communications",
"Consumer Durables",
"Consumer Non-Durables",
"Consumer Services",
"Distribution Services",
"Electronic Technology",
"Energy Minerals",
"Finance",
"Government",
"Health Services",
"Health Technology",
"Industrial Services",
"Miscellaneous",
"N/A",
"Non-Energy Minerals",
"Process Industries",
"Producer Manufacturing",
"Retail Trade",
"Technology Services",
"Transportation",
"Utilities"
]/stocks/list/industryRetrieves all unique industry values available in the stocks universe. Filter by industry classification.
Examples:
https://api.axionquant.com/stocks/list/industryList by Industry
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('industry')
5print(values)Response
[
"Advertising/Marketing Services",
"Aerospace & Defense",
"Agricultural Commodities/Milling",
"Air Freight/Couriers",
"Airlines",
"Alternative Power Generation",
"Aluminum",
"Apparel/Footwear",
"Apparel/Footwear Retail",
"Auto Parts: OEM",
"Automotive Aftermarket",
"Beverages: Alcoholic",
"Beverages: Non-Alcoholic",
"Biotechnology",
"Broadcasting",
"Building Products",
"Cable/Satellite TV",
"Casinos/Gaming",
"Catalog/Specialty Distribution",
"Chemicals: Agricultural",
"Chemicals: Major Diversified",
"Chemicals: Specialty",
"Coal",
"Commercial Printing/Forms",
"Computer Communications",
"Computer Peripherals",
"Computer Processing Hardware",
"Construction Materials",
"Consumer Sundries",
"Containers/Packaging",
"Contract Drilling",
"Data Processing Services",
"Department Stores",
"Discount Stores",
"Drugstore Chains",
"Electric Utilities",
"Electrical Products",
"Electronic Components",
"Electronic Equipment/Instruments",
"Electronic Production Equipment",
"Electronics Distributors",
"Electronics/Appliance Stores",
"Electronics/Appliances",
"Engineering & Construction",
"Environmental Services",
"Finance/Rental/Leasing",
"Financial Conglomerates",
"Financial Publishing/Services",
"Food Distributors",
"Food Retail",
"Food: Major Diversified",
"Food: Meat/Fish/Dairy",
"Food: Specialty/Candy",
"Forest Products",
"Gas Distributors",
"General Government",
"Home Furnishings",
"Home Improvement Chains",
"Homebuilding",
"Hospital/Nursing Management",
"Hotels/Resorts/Cruise lines",
"Household/Personal Care",
"Industrial Conglomerates",
"Industrial Machinery",
"Industrial Specialties",
"Information Technology Services",
"Insurance Brokers/Services",
"Integrated Oil",
"Internet Retail",
"Internet Software/Services",
"Investment Banks/Brokers",
"Investment Managers",
"Investment Trusts/Mutual Funds",
"Life/Health Insurance",
"Major Banks",
"Major Telecommunications",
"Managed Health Care",
"Marine Shipping",
"Media Conglomerates",
"Medical Distributors",
"Medical Specialties",
"Medical/Nursing Services",
"Metal Fabrication",
"Miscellaneous",
"Miscellaneous Commercial Services",
"Miscellaneous Manufacturing",
"Motor Vehicles",
"Movies/Entertainment",
"Multi-Line Insurance",
"N/A",
"Office Equipment/Supplies",
"Oil & Gas Pipelines",
"Oil & Gas Production",
"Oil Refining/Marketing",
"Oilfield Services/Equipment",
"Other Consumer Services",
"Other Consumer Specialties",
"Other Metals/Minerals",
"Other Transportation",
"Packaged Software",
"Personnel Services",
"Pharmaceuticals: Generic",
"Pharmaceuticals: Major",
"Pharmaceuticals: Other",
"Precious Metals",
"Property/Casualty Insurance",
"Publishing: Books/Magazines",
"Publishing: Newspapers",
"Pulp & Paper",
"Railroads",
"Real Estate Development",
"Real Estate Investment Trusts",
"Recreational Products",
"Regional Banks",
"Restaurants",
"Savings Banks",
"Semiconductors",
"Services to the Health Industry",
"Sovereign",
"Specialty Insurance",
"Specialty Stores",
"Specialty Telecommunications",
"Steel",
"Telecommunications Equipment",
"Textiles",
"Tobacco",
"Tools & Hardware",
"Trucking",
"Trucks/Construction/Farm Machinery",
"Water Utilities",
"Wholesale Distributors",
"Wireless Telecommunications"
]/stocks/list/typeRetrieves all unique type values available in the stocks universe. Filter by security type.
Examples:
https://api.axionquant.com/stocks/list/typeList by Type
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('type')
5print(values)Response
[
"closedend fund",
"common stock",
"dr",
"etf fund",
"mutual fund",
"preferred stock",
"reit fund",
"structured",
"unit fund"
]/stocks/list/exchangeRetrieves all unique exchange values available in the stocks universe. Filter by exchange code.
Examples:
https://api.axionquant.com/stocks/list/exchangeList by Exchange
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4values = client.stocks.list('exchange')
5print(values)Response
[
"AMEX",
"AQUIS",
"ASX",
"BIVA",
"BMV",
"BSE",
"CBOE",
"CSE",
"DUS",
"FSE",
"FWB",
"HAM",
"HAN",
"HKEX",
"KRX",
"LSE",
"LSIN",
"MUN",
"NAG",
"NASDAQ",
"NEO",
"NSE",
"NYSE",
"OTC",
"SAPSE",
"SGX",
"SSE",
"SWB",
"SZSE",
"TADAWUL",
"TSE",
"TSX",
"TSXV",
"XETR"
]ESG API
The ESG API provides Environmental, Social, and Governance scores for publicly traded companies. These scores are essential for sustainable investing, risk assessment, and corporate responsibility analysis. Each category provides detailed metrics on different aspects of a company's sustainability performance.
/esg/:tickerRetrieves comprehensive ESG (Environmental, Social, and Governance) scores for a specific company. Returns scores for overall ESG performance as well as individual category scores. These metrics are critical for evaluating a company's sustainability practices, social impact, and corporate governance standards.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol of the company (e.g., "AAPL", "MSFT", "GOOGL") |
Examples:
https://api.axionquant.com/esg/AAPLhttps://api.axionquant.com/esg/MSFTResponse Fields
category string
ESG category (e.g., "esg", "environment", "social", "governance", "controversy")
score number
Numerical score on a 0-100 scale (higher is better for ESG categories; for controversy, lower indicates more significant issues)
grade string
Letter grade equivalent (AAA, AA, A, BBB, BB, B, CCC, CC)
id string
Unique identifier for the score record
Scoring System
ESG Scores
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4esg_data = client.esg.data('AAPL')
5print(esg_data)Response
[
{
"category": "esg",
"score": 42.86,
"grade": "BB",
"id": "1"
},
{
"category": "social",
"score": 40,
"grade": "BB",
"id": "5"
},
{
"category": "governance",
"score": 31,
"grade": "BB",
"id": "6"
},
{
"category": "controversy",
"score": 20,
"grade": "B",
"id": "3"
},
{
"category": "environment",
"score": 57,
"grade": "BBB",
"id": "4"
}
]