AgentStack
SKILL unreviewed MIT Self-run

Arrays Data Api News

skill-arraysdata-arrays-skills-arrays-data-api-news · by ArraysData

Guides the agent to call Arrays REST APIs for market news. Use when the user needs market news articles.

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

Install

$ agentstack add skill-arraysdata-arrays-skills-arrays-data-api-news

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 News? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Arrays Data API — News

Domain: news. Market news.

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/stocks/
  • Paths (all GET):
  • market-news — market news articles

Endpoints

| Method | Path | File | Description | |--------|------|------|-------------| | GET | market-news | market-news | Market news |

> 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/stocks/market-news?start_time=1704067200&end_time=1735689600&symbol=AAPL&limit=10`, {
  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.