Install
$ agentstack add skill-arraysdata-arrays-skills-arrays-data-api-company-crypto-holdings 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 — Company Crypto Holdings
Domain: company_crypto_holdings. Company crypto holdings and crypto transaction history.
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/crypto/ - Paths (all GET):
holdings— company crypto holdings (e.g. MicroStrategy BTC holdings)transactions— company crypto buy/sell transactions
Endpoints
| Method | Path | File | Description | |--------|------|------|-------------| | GET | holdings | crypto-holdings | Company crypto holdings |
> For detailed parameters, response fields, and examples for a specific endpoint, read references/.md in this skill directory.
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/crypto/holdings?symbol=BTC`, {
headers: { 'X-API-Key': apiKey },
});
const data = await res.json();
Full spec
Per-endpoint request/response schema: GET {BASE}/docs/output/{spec_file}.json (see parent reference.md).
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.