Skip to main content
GET
/
v1
/
etf
/
country
Get ETF Country Allocation
curl --request GET \
  --url https://api.aries.com/v1/etf/country \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "countryExposure": [
      {
        "country": "United States",
        "exposure": 99.40734100341797
      },
      {
        "country": "Switzerland",
        "exposure": 0.2782300114631653
      },
      {
        "country": "Netherlands",
        "exposure": 0.12555000185966492
      }
    ],
    "symbol": "SPY"
  }
}

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

ETF ticker to query (required). Send the plain uppercase symbol, e.g. SPY, QQQ, IWM.

isin
string

ISIN identifier — the 12-character International Securities Identification Number for the instrument (e.g. US0378331005 for Apple). Provide this instead of symbol when you have an ISIN.

Response

Successful response

data
object