curl-http
Facilitates API testing using curl and HTTPie for making HTTP requests and debugging endpoints from the command line.
Install this skill
Security score
The curl-http skill was audited on Feb 28, 2026 and we found 48 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Curl to non-GitHub URL
| 15 | curl https://api.example.com/users |
Curl to non-GitHub URL
| 16 | curl -s https://api.example.com/users # Silent |
Curl to non-GitHub URL
| 17 | curl -i https://api.example.com/users # Include headers |
Curl to non-GitHub URL
| 24 | curl -X POST https://api.example.com/users \ |
Curl to non-GitHub URL
| 29 | curl -X POST https://api.example.com/users \ |
Curl to non-GitHub URL
| 38 | curl -H "Authorization: Bearer token123" https://api.example.com |
Curl to non-GitHub URL
| 41 | curl -u username:password https://api.example.com |
Curl to non-GitHub URL
| 53 | curl -X PUT https://api.example.com/users/1 \ |
Curl to non-GitHub URL
| 58 | curl -X PATCH https://api.example.com/users/1 \ |
Curl to non-GitHub URL
| 62 | curl -X DELETE https://api.example.com/users/1 |
Curl to non-GitHub URL
| 69 | curl -X POST https://api.example.com/upload \ |
Curl to non-GitHub URL
| 74 | curl -X POST https://api.example.com/upload \ |
Curl to non-GitHub URL
| 137 | # curl |
Curl to non-GitHub URL
| 142 | if curl -s -f https://api.example.com > /dev/null; then |
Curl to non-GitHub URL
| 150 | curl -s https://api.example.com | jq . |
Curl to non-GitHub URL
| 151 | curl -s https://api.example.com | python -m json.tool |
Curl to non-GitHub URL
| 157 | curl -D headers.txt -o response.json https://api.example.com |
Curl to non-GitHub URL
| 163 | curl --retry 3 --retry-delay 2 https://api.example.com |
Curl to non-GitHub URL
| 169 | curl -w "Time: %{time_total}s\n" -o /dev/null -s https://api.example.com |
Curl to non-GitHub URL
| 175 | curl -X POST https://api.example.com/graphql \ |
Curl to non-GitHub URL
| 184 | curl -v https://api.example.com |
Curl to non-GitHub URL
| 187 | curl --trace - https://api.example.com |
Curl to non-GitHub URL
| 190 | curl -I https://api.example.com |
External URL reference
| 15 | curl https://api.example.com/users |
External URL reference
| 16 | curl -s https://api.example.com/users # Silent |
External URL reference
| 17 | curl -i https://api.example.com/users # Include headers |
External URL reference
| 24 | curl -X POST https://api.example.com/users \ |
External URL reference
| 29 | curl -X POST https://api.example.com/users \ |
External URL reference
| 38 | curl -H "Authorization: Bearer token123" https://api.example.com |
External URL reference
| 41 | curl -u username:password https://api.example.com |
External URL reference
| 46 | https://api.example.com |
External URL reference
| 53 | curl -X PUT https://api.example.com/users/1 \ |
External URL reference
| 58 | curl -X PATCH https://api.example.com/users/1 \ |
External URL reference
| 62 | curl -X DELETE https://api.example.com/users/1 |
External URL reference
| 69 | curl -X POST https://api.example.com/upload \ |
External URL reference
| 74 | curl -X POST https://api.example.com/upload \ |
External URL reference
| 97 | http https://api.example.com/users |
External URL reference
| 138 | status=$(curl -s -o /dev/null -w "%{http_code}" https://api.example.com) |
External URL reference
| 142 | if curl -s -f https://api.example.com > /dev/null; then |
External URL reference
| 150 | curl -s https://api.example.com | jq . |
External URL reference
| 151 | curl -s https://api.example.com | python -m json.tool |
External URL reference
| 157 | curl -D headers.txt -o response.json https://api.example.com |
External URL reference
| 163 | curl --retry 3 --retry-delay 2 https://api.example.com |
External URL reference
| 169 | curl -w "Time: %{time_total}s\n" -o /dev/null -s https://api.example.com |
External URL reference
| 175 | curl -X POST https://api.example.com/graphql \ |
External URL reference
| 184 | curl -v https://api.example.com |
External URL reference
| 187 | curl --trace - https://api.example.com |
External URL reference
| 190 | curl -I https://api.example.com |