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.
npx skills add majiayu000/claude-skill-registry --skill curl-http --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- curl Basics
- GET Request
- POST Request
- Headers & Auth
- Other Methods
- File Upload
- Useful Options
- HTTPie (Friendlier Alternative)
- Output Control
- Common Patterns
- Test Response Code
- Pretty Print JSON
- Save Response & Headers
- Retry on Failure
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
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.
