AgentStack
SKILL unreviewed MIT Self-run

Arrays Data Api Company Crypto Holdings

skill-arraysdata-arrays-skills-arrays-data-api-company-crypto-holdings · by ArraysData

Guides the agent to call Arrays REST APIs for company crypto holdings. Use when the user needs data about which companies hold crypto.

No reviews yet
0 installs
13 views
0.0% view→install

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

⚠ Flagged

1 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.

Are you the author of Arrays Data Api Company Crypto Holdings? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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_URL env var (default https://data-tools.prd.space.id)
  • Auth: Send X-API-Key: header on every request. Read the key from env ARRAYS_API_KEY or .env file.

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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.