Company Web Traffic API
Provides estimated website traffic analytics for publicly traded companies. Data includes global & country rankings, visitor metrics, traffic sources, SEO keywords, backlink authority, and peer comparisons. Ideal for competitive analysis, investment due diligence, and digital footprint assessment.
/web-traffic/:ticker/trafficRetrieves detailed website traffic and SEO metrics for the company associated with a stock ticker. The endpoint extracts the company's primary domain from its profile and queries real-time estimates for traffic volume, user engagement, keyword rankings, and more.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol (e.g., "AAPL", "MSFT", "AMZN") |
Examples:
https://api.axionquant.com/web-traffic/AAPL/traffichttps://api.axionquant.com/web-traffic/MSFT/trafficResponse Fields
traffic object
Core traffic and engagement metrics
visits string
Estimated monthly visits (with M/B suffix)
change string
Month-over-month visit change (with % suffix)
pagesPerVisit number
Average pages viewed per visit
avgVisitDuration string
Average visit duration (MM:SS)
bounceRate string
Percentage of single-page visits (with % suffix)
organicSearchTraffic string
Estimated monthly organic search visits
organicSearchTrafficChange string
Change in organic search traffic (with % suffix)
paidSearchTraffic string
Estimated monthly paid search visits
paidSearchTrafficChange string
Change in paid search traffic (with % suffix)
globalRank number
Global rank among all websites
globalRankLocation string
Scope of the global rank (e.g., "Worldwide")
countryRank number
Country-level rank among all websites
countryRankLocation string
Country of the country rank (e.g., "United States")
visitsInt number
Monthly visits as a raw integer
changeNum number
Month-over-month change as a raw number
bounceRateNum number
Bounce rate as a raw percentage number
organicSearchTrafficInt number
Organic search traffic as a raw integer
organicSearchTrafficChangeNum number
Organic search traffic change as a raw number
paidSearchTrafficInt number
Paid search traffic as a raw integer
paidSearchTrafficChangeNum number
Paid search traffic change as a raw number
last3Months array
Monthly visit totals for the last three months
displayValue string
Formatted visit count (with M/B suffix)
rawValue number
Raw visit count as an integer
trafficByCountry array
Traffic breakdown by country
country string
Country name
trafficShare string
Percentage of total traffic (with % suffix)
traffic string
Estimated monthly visits from that country
desktopShare string
Desktop traffic share in that country (with % suffix)
mobileShare string
Mobile traffic share in that country (with % suffix)
trafficShareNum number
Traffic share as a raw percentage number
trafficInt number
Traffic as a raw integer
desktopShareNum number
Desktop share as a raw percentage number
mobileShareNum number
Mobile share as a raw percentage number
trafficJourney object
Referral sources and outbound destinations
sources array
Where visitors come from (direct, search, referrals)
name string
Source name
share string
Traffic share from this source (with % suffix)
change string
Change in traffic share (with % suffix)
shareNum number
Traffic share as a raw percentage number
changeNum number
Change as a raw number
destinations array
External sites users go to after visiting
name string
Destination site name
share string
Outbound traffic share (with % suffix)
change string
Change in outbound share (with % suffix)
shareNum number
Outbound share as a raw percentage number
changeNum number
Change as a raw number
Company Web Traffic
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4traffic = client.web_traffic.traffic('AAPL')
5print(traffic)Response
{
"traffic": {
"visits": "719.42M",
"change": "+2%",
"pagesPerVisit": 3.23,
"avgVisitDuration": "07:54",
"bounceRate": "60.11%",
"organicSearchTraffic": "856.67M",
"organicSearchTrafficChange": null,
"paidSearchTraffic": "9.6M",
"paidSearchTrafficChange": "+32%",
"globalRank": 44,
"globalRankLocation": "Worldwide",
"countryRank": 35,
"countryRankLocation": "United States",
"visitsInt": 719420000,
"changeNum": 2,
"bounceRateNum": 60.11,
"organicSearchTrafficInt": 856670000,
"paidSearchTrafficInt": 9600000,
"paidSearchTrafficChangeNum": 32
},
"last3Months": [
{
"displayValue": "719.42M",
"rawValue": 719420000
},
{
"displayValue": "704.64M",
"rawValue": 704640000
},
{
"displayValue": "635.76M",
"rawValue": 635760000
}
],
"trafficByCountry": [
{
"country": "United States",
"trafficShare": "35.49%",
"traffic": "255.33M",
"desktopShare": "38.4%",
"mobileShare": "61.6%",
"trafficShareNum": 35.49,
"trafficInt": 255330000,
"desktopShareNum": 38.4,
"mobileShareNum": 61.6
},
{
"country": "United Kingdom",
"trafficShare": "6.44%",
"traffic": "46.3M",
"desktopShare": "30.37%",
"mobileShare": "69.63%",
"trafficShareNum": 6.44,
"trafficInt": 46300000,
"desktopShareNum": 30.37,
"mobileShareNum": 69.63
},
{
"country": "India",
"trafficShare": "6.19%",
"traffic": "44.5M",
"desktopShare": "23.99%",
"mobileShare": "76.01%",
"trafficShareNum": 6.19,
"trafficInt": 44500000,
"desktopShareNum": 23.99,
"mobileShareNum": 76.01
},
{
"country": "Japan",
"trafficShare": "4.44%",
"traffic": "31.94M",
"desktopShare": "56.8%",
"mobileShare": "43.2%",
"trafficShareNum": 4.44,
"trafficInt": 31940000,
"desktopShareNum": 56.8,
"mobileShareNum": 43.2
},
{
"country": "Canada",
"trafficShare": "3.51%",
"traffic": "25.22M",
"desktopShare": "48.58%",
"mobileShare": "51.42%",
"trafficShareNum": 3.51,
"trafficInt": 25220000,
"desktopShareNum": 48.58,
"mobileShareNum": 51.42
}
],
"trafficJourney": {
"sources": [
{
"name": "Direct",
"share": "45.31%",
"change": "+0.71%",
"shareNum": 45.31,
"changeNum": 0.71
},
{
"name": "Google organic•google.com",
"share": "28.52%",
"change": "-2.28%",
"shareNum": 28.52,
"changeNum": -2.28
},
{
"name": "Chatgpt.com",
"share": "1.4%",
"change": "-6.94%",
"shareNum": 1.4,
"changeNum": -6.94
},
{
"name": "stripecdn.com",
"share": "0.75%",
"change": "+1,496.41%",
"shareNum": 0.75,
"changeNum": 1
},
{
"name": "Bing.com",
"share": "0.68%",
"change": "-23.81%",
"shareNum": 0.68,
"changeNum": -23.81
}
],
"destinations": [
{
"name": "Google.com",
"share": "7.23%",
"change": "+5.03%",
"shareNum": 7.23,
"changeNum": 5.03
},
{
"name": "Chatgpt.com",
"share": "6.52%",
"change": "-6.94%",
"shareNum": 6.52,
"changeNum": -6.94
},
{
"name": "Microsoft.com",
"share": "6.37%",
"change": "-7.59%",
"shareNum": 6.37,
"changeNum": -7.59
},
{
"name": "Youtube.com",
"share": "3.24%",
"change": "+13.11%",
"shareNum": 3.24,
"changeNum": 13.11
},
{
"name": "Riotgames.com",
"share": "3.15%",
"change": "-4.9%",
"shareNum": 3.15,
"changeNum": -4.9
}
]
},
"topKeywords": [
{
"keyword": "apple",
"intent": "N",
"position": 1,
"volume": 4090000,
"cpc": 0.2,
"trafficPercent": "1.79%",
"trafficPercentNum": 1.79
},
{
"keyword": "iphone 17",
"intent": "C, N",
"position": 1,
"volume": 3350000,
"cpc": 1.84,
"trafficPercent": "1.47%",
"trafficPercentNum": 1.47
},
{
"keyword": "facebook",
"intent": "N",
"position": 2,
"volume": 101000000,
"cpc": 6.67,
"trafficPercent": "1.44%",
"trafficPercentNum": 1.44
},
{
"keyword": "apple tv",
"intent": "N",
"position": 1,
"volume": 1830000,
"cpc": 0.84,
"trafficPercent": "0.8%",
"trafficPercentNum": 0.8
},
{
"keyword": "apple store",
"intent": "N",
"position": 1,
"volume": 1500000,
"cpc": 0.03,
"trafficPercent": "0.66%",
"trafficPercentNum": 0.66
}
],
"backlinks": {
"authorityScore": 100,
"referringDomains": "5.95M",
"referringDomainsChange": "+1%",
"backlinks": "6.5B",
"backlinksChange": null,
"referringDomainsInt": 5950000,
"referringDomainsChangeNum": 1,
"backlinksInt": 6500000000
},
"site": "apple.com",
"date": "2026-07-12T12:47:56.904Z",
"_id": "6a538cfc1cca1830ebcbd5cb"
}Profile API
The Profile API provides comprehensive company fundamentals, market statistics, analyst recommendations, and corporate details. These endpoints deliver key financial metrics, valuation data, earnings calendars, and executive information for publicly traded companies. All endpoints require a valid ticker symbol.
/profiles/:tickerReturns detailed company information including business summary, contact details, industry classification, executive leadership, and governance risk ratings. This endpoint combines the core asset profile with the current executive team.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol (e.g., "AAPL", "MSFT", "NVDA") |
Examples:
https://api.axionquant.com/profiles/AAPLhttps://api.axionquant.com/profiles/MSFTKey Response Fields
address1, city, state, zip, country
Corporate headquarters location
website, irWebsite
Company and investor relations URLs
sector, industry
Industry classification
longBusinessSummary
Detailed description of the company's operations
fullTimeEmployees
Number of employees
companyOfficers
List of executives with name, age, title, and totalPay
auditRisk, boardRisk, compensationRisk, shareHolderRightsRisk, overallRisk
Governance risk scores (lower is better)
Company Profile (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4profile = client.profiles.profile('AAPL')
5print(profile)Response (abbreviated)
{
"address1": "One Apple Park Way",
"city": "Cupertino",
"state": "CA",
"zip": "95014",
"country": "United States",
"website": "https://www.apple.com",
"industry": "Consumer Electronics",
"sector": "Technology",
"longBusinessSummary": "Apple Inc. designs, manufactures, and markets smartphones...",
"fullTimeEmployees": 166000,
"companyOfficers": [
{
"name": "Mr. Timothy D. Cook",
"age": 63,
"title": "CEO & Director",
"totalPay": 16520856
}
],
"overallRisk": 1,
"governanceEpochDate": "2025-12-01T00:00:00.000Z"
"auditRisk": 7,
"boardRisk": 1,
"compensationRisk": 3,
"shareHolderRightsRisk": 1,
"compensationAsOfEpochDate": "2024-12-31T00:00:00.000Z",
"irWebsite": "http://investor.apple.com/",
"executiveTeam": [],
}/profiles/:ticker/summaryRetrieves current trading statistics, valuation multiples, dividend information, and 52-week price range. Ideal for a quick snapshot of a stock's market performance.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/summaryhttps://api.axionquant.com/profiles/MSFT/summaryKey Response Fields
previousClose, open, dayLow, dayHigh
Daily trading prices
volume, averageVolume
Current and average trading volume
marketCap
Market capitalization
trailingPE, forwardPE
Price-to-earnings ratios (past & forward)
dividendRate, dividendYield, exDividendDate
Dividend information
fiftyTwoWeekLow, fiftyTwoWeekHigh
52-week price range
beta
Volatility measure relative to market
Stock Summary (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4summary = client.profiles.summary('AAPL')
5print(summary)Response
{
"previousClose": 271.84,
"open": 273.605,
"dayLow": 266.96,
"dayHigh": 273.62,
"volume": 51509672,
"averageVolume": 46958041,
"marketCap": 4039405731840,
"trailingPE": 36.49,
"forwardPE": 29.84,
"dividendRate": 1.04,
"dividendYield": 0.0038,
"exDividendDate": "2025-11-10T00:00:00.000Z",
"fiftyTwoWeekLow": 169.21,
"fiftyTwoWeekHigh": 288.62,
"beta": 1.107
}