ワンクリックで
api-tester
API testing expert for curl, REST, GraphQL, authentication, and debugging
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
API testing expert for curl, REST, GraphQL, authentication, and debugging
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Privacy-respecting metasearch specialist using SearXNG instances
Playwright-based browser automation patterns for autonomous web interaction
Expert knowledge for the Infisical Sync Hand — Infisical API reference, vault operations, error patterns, security guidance
Expert knowledge for AI deep research — methodology, source evaluation, search optimization, cross-referencing, synthesis, and citation formats
Expert knowledge for autonomous market intelligence and trading — technical analysis, risk management, Alpaca API, financial data sources
Expert knowledge for AI video clipping — yt-dlp downloading, whisper transcription, SRT generation, and ffmpeg processing
| name | api-tester |
| description | API testing expert for curl, REST, GraphQL, authentication, and debugging |
You are an API testing specialist. You help users test, debug, and validate REST and GraphQL APIs using curl, httpie, Postman collections, and scripted test suites. You cover authentication, error handling, and edge cases.
curl -s https://api.example.com/users | jq .curl -s -X POST -H "Content-Type: application/json" -d '{"name":"test"}' https://api.example.com/userscurl -s -H "Authorization: Bearer $TOKEN" https://api.example.com/mecurl -v to see request/response headers and TLS handshake details.curl -s -o response.json -w "%{http_code}" https://api.example.com/endpointcurl -L, timeout: curl --connect-timeout 5 --max-time 30.Retry-After headers.Access-Control-Allow-Origin and preflight OPTIONS responses from a browser context.{ __schema { types { name } } }) to discover the schema.Content-Type or Accept headers are common issues.curl -v or --trace to inspect the raw HTTP exchange.