{"id":40324268,"url":"https://github.com/mrfoh/httpprobe","last_synced_at":"2026-03-08T19:10:00.115Z","repository":{"id":281210171,"uuid":"939400523","full_name":"mrfoh/httpprobe","owner":"mrfoh","description":"A powerful HTTP API testing tool for defining, running, and validating API tests using YAML or JSON test definitions.","archived":false,"fork":false,"pushed_at":"2025-03-15T20:24:47.000Z","size":6576,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T21:32:09.774Z","etag":null,"topics":["api","go","http","http-testing","testing"],"latest_commit_sha":null,"homepage":"https://mrfoh.github.io/httpprobe/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrfoh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-26T13:35:48.000Z","updated_at":"2025-03-15T20:24:50.000Z","dependencies_parsed_at":"2025-03-07T16:35:37.312Z","dependency_job_id":null,"html_url":"https://github.com/mrfoh/httpprobe","commit_stats":null,"previous_names":["mrfoh/httpprobe"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mrfoh/httpprobe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfoh%2Fhttpprobe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfoh%2Fhttpprobe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfoh%2Fhttpprobe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfoh%2Fhttpprobe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrfoh","download_url":"https://codeload.github.com/mrfoh/httpprobe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrfoh%2Fhttpprobe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28598165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","go","http","http-testing","testing"],"created_at":"2026-01-20T07:34:09.283Z","updated_at":"2026-01-20T07:34:11.314Z","avatar_url":"https://github.com/mrfoh.png","language":"Go","readme":"# HttpProbe [![main](https://github.com/mrfoh/httpprobe/actions/workflows/main.yml/badge.svg?event=push)](https://github.com/mrfoh/httpprobe/actions/workflows/main.yml)\n\nA powerful HTTP API testing tool for defining, running, and validating API tests using YAML or JSON test definitions.\n\n![HttpProbe](https://via.placeholder.com/800x400?text=HttpProbe+API+Testing+Tool)\n\n## Features\n\n- **Test Definitions**: Define API tests in YAML or JSON format\n- **Variable Interpolation**: Support for variables, environment variables, and dynamic functions\n- **Rich Assertions**: Validate status codes, headers, and response bodies with detailed failure reporting\n- **Schema Validation**: Verify response structures with JSON schema\n- **Multiple Output Formats**: View results in text, table, or JSON formats\n- **Concurrency**: Run test definitions and test cases in parallel for faster execution\n- **Test Lifecycle Hooks**: Run setup and teardown operations before/after tests\n- **Response Value Export**: Extract and reuse values from responses in subsequent tests\n- **Flexible Logging**: Configurable logging levels and formats\n\n## Installation\n\n### Using the Install Script (Linux, macOS, WSL)\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/mrfoh/httpprobe/main/install.sh | bash\n```\n\n### macOS (Homebrew)\n\n```bash\n# Add the tap\nbrew tap mrfoh/tap\n\n# Install httpprobe\nbrew install httpprobe\n```\n\n### Linux (Snap)\n\n```bash\n# Install httpprobe\nsudo snap install httpprobe\n```\n\n### Windows (Scoop)\n\n```powershell\n# Add the bucket\nscoop bucket add mrfoh https://github.com/mrfoh/scoopbucket\n\n# Install httpprobe\nscoop install mrfoh/httpprobe\n```\n\n### From Binary Releases\n\nDownload the prebuilt binary for your platform from the [releases page](https://github.com/mrfoh/httpprobe/releases).\n\n### From Source\n\n```bash\ngit clone https://github.com/mrfoh/httpprobe.git\ncd httpprobe\ngo build -o httpprobe ./cmd/main.go\n```\n\n### Using Go Install\n\n```bash\ngo install github.com/mrfoh/httpprobe@latest\n```\n\n## Quick Start\n\n1. Create a test definition file (`test.yaml`):\n\n```yaml\nname: \"Simple API Test\"\ndescription: \"Testing basic API functionality\"\nvariables:\n  base_url:\n    type: string\n    value: \"https://api.example.com\"\n  api_key:\n    type: string\n    value: \"${env:API_KEY}\"\n\nsuites:\n  - name: \"User API\"\n    cases:\n      - title: \"Get Users\"\n        request:\n          method: GET\n          url: \"${base_url}/users\"\n          headers:\n            - key: Authorization\n              value: Bearer ${api_key}\n          body:\n            type: json\n            data: null\n          assertions:\n            status: 200\n            headers:\n              content-type: \"application/json\"\n            body:\n              \"$.status\": \"success\"\n```\n\n2. Run the test:\n\n```bash\nhttpprobe run -p sample.test.yaml\n```\n\n## Docs\n\nSee docs [here](https://mrfoh.github.io/httpprobe/)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n### Release Process\n\nThis project uses [GoReleaser](https://goreleaser.com/) for building and publishing releases:\n\n1. Make sure all your changes are committed and pushed\n2. Tag the release: `git tag -a v1.2.3 -m \"Release v1.2.3\"`\n3. Push the tag: `git push origin v1.2.3`\n4. The GitHub Actions workflow will automatically build binaries and publish the release\n\n#### Testing Releases Locally\n\nTo test the release process locally without publishing:\n\n```bash\n# Install GoReleaser\ngo install github.com/goreleaser/goreleaser@latest\n\n# Test the release process (no publishing)\ngoreleaser release --snapshot --clean --config .goreleaser.local.yml\n```\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfoh%2Fhttpprobe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrfoh%2Fhttpprobe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrfoh%2Fhttpprobe/lists"}