Skip to main content

Constructor

new Axion(apiKey?: string)
Creates a new Axion client instance.
apiKey
string
Your Axion API key. Required for authenticated endpoints.

Properties

The Axion client provides access to all API modules:
stocks
StocksAPI
Stock market data and prices
crypto
CryptoAPI
Cryptocurrency data and prices
forex
ForexAPI
Foreign exchange data and prices
futures
FuturesAPI
Futures contracts data and prices
indices
IndicesAPI
Market indices data and prices
etfs
ETFAPI
ETF information and holdings
profiles
ProfilesAPI
Company profiles and statistics
financials
FinancialsAPI
Financial statements and metrics
earnings
EarningsAPI
Earnings data and reports
filings
FilingsAPI
SEC filings and forms
insiders
InsidersAPI
Insider trading and ownership
news
NewsAPI
Financial news articles
sentiment
SentimentAPI
Market sentiment analysis
esg
ESGAPI
ESG (Environmental, Social, Governance) data
credit
CreditAPI
Credit ratings and data
supplyChain
SupplyChainAPI
Supply chain relationships
webTraffic
WebTrafficAPI
Website traffic analytics
econ
EconAPI
Economic data and calendar

Example

import { Axion } from 'axion-sdk';

const client = new Axion('your-api-key');

const prices = await client.stocks.prices('AAPL');