API Documentation

⌘K
GET/api/1/equity/supply-chain/{identifier}

Supply Chain API

Returns supply chain relationships for the given ISIN

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/supply-chain/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "parentSymbol": "AAPL",
  "customer": true,
  "name": "Supplier Company",
  "oneMonthCorrelation": 0.75,
  "oneYearCorrelation": 0.82,
  "sixMonthCorrelation": 0.78,
  "supplier": false,
  "symbol": "SUPP",
  "threeMonthCorrelation": 0.76,
  "twoWeekCorrelation": 0.73,
  "twoYearCorrelation": 0.85,
  "country": "US",
  "industry": "Technology"
}
]