AgentStack
SKILL verified MIT Self-run

Http Request

skill-ericwang915-pythonclaw-http-request · by ericwang915

>

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

Install

$ agentstack add skill-ericwang915-pythonclaw-http-request

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • 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 Http Request? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

HTTP Request

When to Use

  • [ ] Call REST APIs (GET, POST, PUT, DELETE, PATCH)
  • [ ] Test or probe API endpoints
  • [ ] Fetch JSON or data from a URL
  • [ ] Send request bodies and custom headers

When NOT to Use

  • [ ] Web search — use tavily_search (web_search tool)
  • [ ] Scraping page content — use web_scraper
  • [ ] Simple file downloads — use curl or wget
  • [ ] GitHub operations — use github skill

Setup

Install dependency: pip install requests

Usage/Commands

python {skill_path}/request.py URL [options]

| Option | Description | |--------|-------------| | --method GET|POST|PUT|DELETE|PATCH | HTTP method (default: GET) | | --data '{"key": "value"}' | JSON request body | | --header "Name: Value" | Custom header (repeatable) | | --timeout N | Timeout in seconds | | --format text|json|headers | Output format |

Notes

  • For APIs requiring auth, use --header "Authorization: Bearer "
  • JSON body must be valid; escape quotes properly for shell
  • Prefer this for structured API calls; use web_scraper for HTML extraction

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.