Logo
AXION

Supply Chain Peers

GET/supply-chain/:ticker/peers

Identifies a company's main competitors and industry peers. Essential for competitive analysis, benchmarking, and understanding the competitive landscape within a specific industry or market segment.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol of the company to analyze (e.g., "AAPL", "MSFT", "GOOGL")

Examples:

https://api.axionquant.com/supply-chain/AAPL/peers
https://api.axionquant.com/supply-chain/MSFT/peers

Response Fields

name string

Competitor company full name

ticker string

Competitor company ticker symbol

symbol string

Competitor company exchange:symbol pair

|

Competitors (Peers)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4peers = client.supply_chain.peers('AAPL')
5print(peers)

Response

[
  {
    "name": "GainClients, Inc.",
    "ticker": "GCLT",
    "symbol": "OTC:GCLT"
  },
  {
    "name": "Brag House Holdings, Inc.",
    "ticker": "TBH",
    "symbol": "NASDAQ:TBH"
  },
  {
    "name": "Grayscale Stacks Trust",
    "ticker": "STCK",
    "symbol": "OTC:STCK"
  },
  {
    "name": "Winners, Inc.",
    "ticker": "WNRS",
    "symbol": "OTC:WNRS"
  },
  {
    "name": "Zeta Network Group Class A",
    "ticker": "ZNB",
    "symbol": "NASDAQ:ZNB"
  },
  {
    "name": "Gartner, Inc.",
    "ticker": "IT",
    "symbol": "NYSE:IT"
  },
  {
    "name": "Hartford Creative Group Inc",
    "ticker": "HFUS",
    "symbol": "OTC:HFUS"
  },
  {
    "name": "Internetarray, Inc.",
    "ticker": "INAR",
    "symbol": "OTC:INAR"
  },
  {
    "name": "Liberty Media Corporation Series A Liberty Formula One",
    "ticker": "FWONA",
    "symbol": "NASDAQ:FWONA"
  },
  {
    "name": "Bollinger Innovations, Inc.",
    "ticker": "BINI",
    "symbol": "OTC:BINI"
  },
  {
    "name": "Nextdoor Holdings, Inc. Class A",
    "ticker": "NXDR",
    "symbol": "NYSE:NXDR"
  },
  {
    "name": "FuboTV Inc. Class A",
    "ticker": "FUBO",
    "symbol": "NYSE:FUBO"
  }
]
GET/supply-chain/:ticker/suppliers

Identifies a company's key suppliers and critical vendors. Essential for analyzing supply chain risks, cost structure, and potential vulnerabilities from supplier concentration or dependency.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol of the company to analyze (e.g., "AAPL", "MSFT", "GOOGL")

Examples:

https://api.axionquant.com/supply-chain/AAPL/suppliers
https://api.axionquant.com/supply-chain/TSLA/suppliers

Response Fields

ticker string

Supplier company ticker symbol

companyName string

Supplier company full name

marketCap string

Supplier company market capitalization (in millions)

revenues string

Supplier company total revenues (in millions)

income string

Supplier company net income (in millions)

employees string

Supplier company number of employees

|

Key Suppliers

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4suppliers = client.supply_chain.suppliers('AAPL')
5print(suppliers)

Response

[
  {
    "ticker": "GOOG",
    "companyName": "Alphabet Inc",
    "marketCap": "4,116,377.17",
    "revenues": "422,498.00",
    "income": "160,208.00",
    "employees": "46,224"
  },
  {
    "ticker": "AAOI",
    "companyName": "Applied Optoelectronics Inc",
    "marketCap": "10,176.32",
    "revenues": "506.29",
    "income": "-43.34",
    "employees": "4,691"
  },
  {
    "ticker": "AI",
    "companyName": "C3 ai Inc",
    "marketCap": "1,234.16",
    "revenues": "351.68",
    "income": "-381.34",
    "employees": "863"
  },
  {
    "ticker": "AKAM",
    "companyName": "Akamai Technologies Inc",
    "marketCap": "17,102.51",
    "revenues": "4,266.65",
    "income": "435.18",
    "employees": "11,000"
  },
  {
    "ticker": "AMBA",
    "companyName": "Ambarella Inc",
    "marketCap": "2,706.14",
    "revenues": "403.27",
    "income": "-93.96",
    "employees": "959"
  },
  {
    "ticker": "APP",
    "companyName": "Applovin Corporation",
    "marketCap": "161,343.47",
    "revenues": "6,124.93",
    "income": "4,104.94",
    "employees": "898"
  },
  {
    "ticker": "APPN",
    "companyName": "Appian Corporation",
    "marketCap": "1,621.83",
    "revenues": "762.60",
    "income": "0.89",
    "employees": "2,149"
  },
  {
    "ticker": "APPS",
    "companyName": "Digital Turbine Inc",
    "marketCap": "1,263.45",
    "revenues": "566.52",
    "income": "-37.73",
    "employees": "407"
  },
  {
    "ticker": "ASFT",
    "companyName": "Appsoft Technologies Inc",
    "marketCap": "1.35",
    "revenues": "0.00",
    "income": "-0.09",
    "employees": "0"
  },
  {
    "ticker": "AVPT",
    "companyName": "Avepoint Inc",
    "marketCap": "2,462.26",
    "revenues": "442.90",
    "income": "46.80",
    "employees": "333"
  },
  {
    "ticker": "BASE",
    "companyName": "Couchbase Inc",
    "marketCap": "1,340.87",
    "revenues": "191.08",
    "income": "-80.76",
    "employees": "792"
  },
  {
    "ticker": "BLZE",
    "companyName": "Backblaze Inc",
    "marketCap": "871.57",
    "revenues": "150.07",
    "income": "-22.44",
    "employees": "320"
  },
  {
    "ticker": "BRO",
    "companyName": "Brown and Brown Inc",
    "marketCap": "25,548.75",
    "revenues": "6,399.00",
    "income": "1,160.00",
    "employees": "22,888"
  },
  {
    "ticker": "CMBMF",
    "companyName": "Cambium Networks Corp",
    "marketCap": "9.80",
    "revenues": "169.21",
    "income": "-29.93",
    "employees": "0"
  },
  {
    "ticker": "CMCM",
    "companyName": "Cheetah Mobile Inc",
    "marketCap": "4,615.75",
    "revenues": "164.27",
    "income": "-33.63",
    "employees": "934"
  },
  {
    "ticker": "CXM",
    "companyName": "Sprinklr Inc",
    "marketCap": "1,257.01",
    "revenues": "810.48",
    "income": "127.36",
    "employees": "3,258"
  }
]

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.

GET/web-traffic/:ticker/traffic

Retrieves 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

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT", "AMZN")

Examples:

https://api.axionquant.com/web-traffic/AAPL/traffic
https://api.axionquant.com/web-traffic/MSFT/traffic

Response 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

Sample code
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"
}