Agent skill · Testing & QA

curl-http

API testing with curl and httpie for HTTP requests. Use when user asks to "test API", "make HTTP request", "curl POST", "send request", "test endpoint", "debug API", or make any HTTP calls from command line.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill curl-http --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/api/curl-http/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# curl & HTTPie Command-line HTTP clients for API testing. ## curl Basics ### GET Request ```bash curl https://api.example.com/users curl -s https://api.example.com/users # Silent curl -i https://api.example.com/users # Include headers ``` ### POST Request ```bash # JSON body curl -X POST https://api.example.com/users \ -H "Content-Type: application/json" \ -d '{"name":"John","email":"john@example.com"}' # From file curl -X POST https://api.example.com/users \ -H "Content-Type: application/json" \ -d @data.json ``` ### Headers & Auth ```bash # Custom header curl -H "Authorization: Bearer token123" https://api.example.com # Basic auth curl -u username:password https://api.example.com # Multiple headers curl -H "Content-Type: application/json" \ -H "X-API-Key: key123" \ https://api.example.com ``` ### Other Methods ```bash # PUT curl -X PUT https://api.example.com/users/1 \ -H "Content-Type: application/json" \ -d '{"name":"Updated"}' # PATCH curl -X PATCH https://api.example.com/users/1 \ -d '{"status":"active"}' # DELETE curl -X DELETE https://api.example.com/users/1 ``` ### File Upload ```bash # Form upload curl -X POST https://api.example.com/upload \ -F "file=@photo.jpg" \ -F "d

What's inside
Steps it walks through
  1. curl Basics
  2. GET Request
  3. POST Request
  4. Headers & Auth
  5. Other Methods
  6. File Upload
  7. Useful Options
  8. HTTPie (Friendlier Alternative)
  9. Output Control
  10. Common Patterns
  11. Test Response Code
  12. Pretty Print JSON
  13. Save Response & Headers
  14. Retry on Failure
Ships with 1 file
  • metadata.json
Commands it runs
curl https://api.example.com/users
curl -s https://api.example.com/users  # Silent
curl -i https://api.example.com/users  # Include headers
JSON body
curl -X POST https://api.example.com/users \
From file
Custom header
curl -H "Authorization: Bearer token123" https://api.example.com
Basic auth
curl -u username:password https://api.example.com
More from claude-skill-registry
All skills →
About this skill
What does the curl-http skill do?

API testing with curl and httpie for HTTP requests. Use when user asks to "test API", "make HTTP request", "curl POST", "send request", "test endpoint", "debug API", or make any HTTP calls from command line.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill curl-http --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going