Skip to main content
GET
/
v1
/
stock
/
supply-chain
Get Supply Chain
curl --request GET \
  --url https://api.aries.com/v1/stock/supply-chain \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "AAPL",
  "data": [
    {
      "symbol": "AAPL",
      "name": "Xperi Corp.",
      "country": "US",
      "industry": "Technology",
      "customer": true,
      "supplier": true,
      "oneMonthCorrelation": 0.35,
      "oneYearCorrelation": 0.35,
      "sixMonthCorrelation": 0.35,
      "threeMonthCorrelation": 0.35,
      "twoWeekCorrelation": 0.35,
      "twoYearCorrelation": 0.35
    }
  ]
}

Query parameters

ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g. AAPL).

Response

Success returns 200 OK with a JSON object containing supply chain relationship data. Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

Stock ticker to query. Send the plain uppercase symbol exactly as you'd type it on a brokerage screen, e.g. AAPL, MSFT.

Example:

"AAPL"

Response

Supply chain data.

data
object[]
symbol
string