sec-fetch

Utility skill for fetching data from SEC EDGAR endpoints. SEC requires a User-Agent header containing a name and email address for all programmatic access — requests without it are blocked with HTTP 403.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "sec-fetch" with this command: npx skills add tradeinsight-info/investment-analysis-skills/tradeinsight-info-investment-analysis-skills-sec-fetch

SEC EDGAR Fetch

Utility skill for fetching data from SEC EDGAR endpoints. SEC requires a User-Agent header containing a name and email address for all programmatic access — requests without it are blocked with HTTP 403.

Process

Step 1: Resolve SEC Credentials

Check if credentials already exist in the plugin config:

cat ${CLAUDE_PLUGIN_ROOT}/config.json 2>/dev/null

  • If config.json exists and contains sec.user and sec.email , use those values.

  • If config.json does not exist or is missing SEC fields, use the AskUserQuestion tool to ask:

SEC EDGAR requires all API users to identify themselves (regulatory requirement). Please provide:

  • Your full name

  • Your email address

Then save the credentials by writing/updating ${CLAUDE_PLUGIN_ROOT}/config.json :

{ "sec": { "user": "<provided name>", "email": "<provided email>" } }

If config.json already exists with other fields, merge the sec section — do not overwrite existing fields.

Step 2: Fetch the URL

Run the sec-fetch.sh script with the resolved credentials:

bash ${CLAUDE_PLUGIN_ROOT}/skills/sec-fetch/scripts/sec-fetch.sh "<url>" "<sec.user>" "<sec.email>"

Return the output to the calling skill/agent.

Step 3: Error Handling

  • HTTP 403: Credentials may be malformed. Re-prompt the user and update config.json .

  • HTTP 429 (rate limit): SEC enforces 10 req/s. Wait 2 seconds and retry (max 3 retries).

  • Timeout/network error: Report the failure so the calling skill can fall back to secondary sources.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

sec-filing-reader

No summary provided by upstream source.

Repository SourceNeeds Review
Research

cross-validation

No summary provided by upstream source.

Repository SourceNeeds Review
Research

growth-analysis

No summary provided by upstream source.

Repository SourceNeeds Review
Research

income-statement-analysis

No summary provided by upstream source.

Repository SourceNeeds Review