Skip to main content
GET
/
v1
/
etf
/
info
Get ETF Information
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/etf/info \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "asset_class": "Equity",
      "assets_under_management": 661267310000,
      "avg_volume": 73651172,
      "description": "The SPDR S&P 500 ETF Trust seeks to provide investment results that correspond generally to the price and yield performance of the S&P 500 Index.",
      "domicile": "US",
      "etf_company": "SPDR",
      "expense_ratio": 0.0945,
      "holdings_count": 503,
      "inception_date": "1993-01-22",
      "isin": "US78462F1030",
      "logo": "https://stock-logo-picture.s3.us-west-2.amazonaws.com/etf/logos/SPY.svg",
      "name": "SPDR S&P 500 ETF Trust",
      "nav": 649.08,
      "nav_currency": "USD",
      "sectors_list": [
        {
          "exposure": 34.62,
          "industry": "Technology"
        }
      ],
      "security_cusip": "78462F103",
      "symbol": "SPY",
      "updated_at": "2025-09-06T02:56:15.171Z",
      "website": "https://www.ssga.com/us/en/institutional/etfs/spdr-sp-500-etf-trust-spy"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string
required

ETF symbol (uppercase, e.g., SPY, QQQ, IWM)

Response

Successfully retrieved ETF information

data
object[]
error
object
pagination
any
request_id
string
success
boolean