# Send IEX Cloud CLI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "iex-cloud",
    "name": "IEX Cloud CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/oscraters/iex-cloud",
    "canonicalUrl": "https://clawhub.ai/oscraters/iex-cloud",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/iex-cloud",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iex-cloud",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api_docs.md",
      "registry-metadata.json",
      "scripts/README.md",
      "scripts/iex_cloud_cli.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "iex-cloud",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T06:50:17.315Z",
      "expiresAt": "2026-05-11T06:50:17.315Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iex-cloud",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iex-cloud",
        "contentDisposition": "attachment; filename=\"iex-cloud-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "iex-cloud"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/iex-cloud"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/iex-cloud",
    "downloadUrl": "https://openagent3.xyz/downloads/iex-cloud",
    "agentUrl": "https://openagent3.xyz/skills/iex-cloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iex-cloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iex-cloud/agent.md"
  }
}
```
## Documentation

### Overview

This skill provides an operational workflow for IEX Cloud API usage in OpenClaw tasks:

selecting the right endpoint for market-data requests
building valid authenticated requests
handling API and transport errors
running repeatable calls through a local Bash CLI

### Quick Start

Preferred for OpenClaw: store the token at skills.entries.iex-cloud.apiKey and back it with a SecretRef via openclaw secrets configure.
For direct shell use outside OpenClaw, set export IEX_TOKEN=....
Compatibility fallback: export IEX_CLOUD_TOKEN=....
Read endpoint/parameter guidance in references/api_docs.md.
Use scripts/iex_cloud_cli.sh for reliable calls.

Example:

scripts/iex_cloud_cli.sh quote AAPL
scripts/iex_cloud_cli.sh chart AAPL 1m
scripts/iex_cloud_cli.sh movers mostactive

### Workflow

Classify request type:

latest quote: quote
historical bars: chart
company/fundamentals: company, stats
market movers: movers
multi-symbol pulls: batch

Validate required parameters before call dispatch.
Execute request with token auth and timeout.
Validate response class:

HTTP failure / transport failure
JSON payload containing API error fields
empty or malformed payload

Normalize output downstream as needed.

### Authentication and Safety

Primary token env var: IEX_TOKEN.
Compatibility token alias: IEX_CLOUD_TOKEN.
In OpenClaw, prefer skills.entries.iex-cloud.apiKey with SecretRefs over plaintext config.
Do not hardcode tokens in source files.
Do not print full token values in logs.
Prefer query parameter token=... when using these endpoints.
The CLI accepts only trusted IEX API hosts for base URL overrides and warns when a non-default trusted override is used.
raw calls are limited to relative IEX API paths. Do not pass full URLs.

### Reliability Guidance

Use bounded timeouts (curl --max-time in CLI).
Handle non-2xx responses as hard failures.
Validate symbol, range, and list-type inputs early.
For large jobs, use batch endpoints where possible.
If you modify IEX_BASE_URL or pass --base-url, expect a warning so the change is visible during review.

### OpenClaw Secrets Management

OpenClaw can inject this skill's API key from skills.entries.iex-cloud.apiKey for each agent run.
Secret refs are preferred over plaintext because the resolved secret wins at runtime and plaintext is ignored.
Recommended operator flow:

openclaw secrets audit --check
openclaw secrets configure
openclaw secrets audit --check


For direct shell usage outside OpenClaw, export IEX_TOKEN in your shell instead.

### Included Files

scripts/iex_cloud_cli.sh: Bash CLI for common endpoints and raw calls.
scripts/README.md: CLI usage examples and command reference.
references/api_docs.md: operational endpoint reference and guardrails.

### Resources

API docs: https://iexcloud.io/docs/api/
Status page: https://status.iexapis.com/
Base URL (stable): https://cloud.iexapis.com/stable
Sandbox URL: https://sandbox.iexapis.com/stable
OpenClaw secrets: https://docs.openclaw.ai/gateway/secrets
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: oscraters
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T06:50:17.315Z
- Expires at: 2026-05-11T06:50:17.315Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/iex-cloud)
- [Send to Agent page](https://openagent3.xyz/skills/iex-cloud/agent)
- [JSON manifest](https://openagent3.xyz/skills/iex-cloud/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/iex-cloud/agent.md)
- [Download page](https://openagent3.xyz/downloads/iex-cloud)