Install
$ agentstack add skill-arraysdata-arrays-skills-arrays-data-api-etf-fundamentals Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Reads credentials/environment and may exfiltrate them.
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Arrays Data API — ETF Fundamentals
Domain: etf_fundamentals. ETF holdings, info, country/sector weightings, and fund flow.
Base URL and auth
- Base:
ARRAYS_API_BASE_URLenv var (defaulthttps://data-tools.prd.space.id) - Auth: Send
X-API-Key:header on every request. Read the key from envARRAYS_API_KEYor.envfile.
Path prefix and endpoints
- Prefix:
/api/v1/etf/ - Paths (all GET):
holdings— ETF holdings (top constituents)info— ETF basic informationcountry-weightings— allocation by countrysector-weightings— allocation by sectorflow— ETF fund flow / in/outflow data
Endpoints
| Method | Path | File | Description | |--------|------|------|-------------| | GET | info | info | ETF Info | | GET | holdings | holdings | ETF Holdings | | GET | country-weightings | country-weightings | ETF Country Weightings | | GET | sector-weightings | sector-weightings | ETF Sector Weightings | | GET | flow | flow | ETF Fund Flow / In/Outflow |
> For detailed parameters, response fields, and examples for a specific endpoint, read references/.md in this skill directory.
Full spec
Per-endpoint request/response schema: GET {BASE}/docs/output/{spec_file}.json (see parent reference.md).
Example
const base = process.env.ARRAYS_API_BASE_URL || 'https://data-tools.prd.space.id';
const apiKey = process.env.ARRAYS_API_KEY;
const res = await fetch(`${base}/api/v1/etf/holdings?symbol=SPY`, {
headers: { 'X-API-Key': apiKey },
});
const data = await res.json();
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ArraysData
- Source: ArraysData/arrays-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.