{"id":33916779,"url":"https://github.com/rails-designer/requestkit","last_synced_at":"2026-03-17T16:10:58.780Z","repository":{"id":322880515,"uuid":"1080952094","full_name":"Rails-Designer/requestkit","owner":"Rails-Designer","description":"Local HTTP request toolkit","archived":false,"fork":false,"pushed_at":"2025-12-10T08:03:19.000Z","size":422,"stargazers_count":4,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-10T10:04:44.268Z","etag":null,"topics":["developer-tool","developer-tools","webhook-server","webhooks"],"latest_commit_sha":null,"homepage":"https://railsdesigner.com/requestkit/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rails-Designer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-22T05:19:58.000Z","updated_at":"2025-12-10T08:03:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Rails-Designer/requestkit","commit_stats":null,"previous_names":["rails-designer/requestkit"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Rails-Designer/requestkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rails-Designer%2Frequestkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rails-Designer%2Frequestkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rails-Designer%2Frequestkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rails-Designer%2Frequestkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rails-Designer","download_url":"https://codeload.github.com/Rails-Designer/requestkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rails-Designer%2Frequestkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27678892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-12T02:00:06.775Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["developer-tool","developer-tools","webhook-server","webhooks"],"created_at":"2025-12-12T07:30:38.058Z","updated_at":"2025-12-12T07:30:39.374Z","avatar_url":"https://github.com/Rails-Designer.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Requestkit\n\nLocal HTTP request toolkit for development. Test Stripe webhooks, GitHub hooks or any HTTP endpoint locally. Your data stays private, works offline and runs fast without network latency.\n\n\n![Screenshot of the Requestkit UI, listing POST requests to Stripe, GitHub, Twilio and Shopify](https://raw.githubusercontent.com/Rails-Designer/requestkit/HEAD/.github/screenshot.jpg)\n\n\n**Sponsored By [Rails Designer](https://railsdesigner.com/)**\n\n\u003ca href=\"https://railsdesigner.com/\" target=\"_blank\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/Rails-Designer/requestkit/HEAD/.github/logo-dark.svg\"\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/Rails-Designer/requestkit/HEAD/.github/logo-light.svg\"\u003e\n    \u003cimg alt=\"Rails Designer\" src=\"https://raw.githubusercontent.com/Rails-Designer/requestkit/HEAD/.github/logo-light.svg\" width=\"240\" style=\"max-width: 100%;\"\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n\n## Installation\n\nIf you have a Ruby environment available, you can install Requestkit globally:\n```bash\ngem install requestkit\n```\n\n\n## Usage\n\nStart the server:\n```bash\nrequestkit\n```\n\nThis starts Requestkit on `http://localhost:4000`. Send any HTTP request to test:\n```bash\ncurl -X POST http://localhost:4000/stripe/webhook \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"event\": \"payment.succeeded\", \"amount\": 2500}'\n```\n\nOpen `http://localhost:4000` in your browser to see all captured requests with headers and body.\n\n\n### Custom port\n\n```bash\nrequestkit --port 8080\n```\n\n\n### Persistent storage\n\nBy default, requests are stored in memory and cleared when you stop the server. Use file storage to persist across restarts:\n```bash\nrequestkit --storage file\n```\n\nRequests are saved to `~/.config/requestkit/requestkit.db`.\n\n\n### Custom database path\n\n```bash\nrequestkit --storage file --database-path ./my-project.db\n```\n\n\n## Configuration\n\nCreate a configuration file to set defaults:\n\n**User-wide settings** (`~/.config/requestkit/config.yml`):\n```yaml\nport: 5000\nstorage: file\n```\n\n**Project-specific settings** (`./.requestkit.yml`):\n```yaml\nstorage: memory\ndefault_namespace: my-rails-app\n```\n\nConfiguration precedence: CLI flags \u003e project config \u003e user config \u003e defaults\n\n\n### Available options\n\n| Option | Description | Default |\n|--------|-------------|---------|\n| `port` | Server port | `4000` |\n| `storage` | Storage type: `memory` or `file` | `memory` |\n| `database_path` | Database file location | `~/.config/requestkit/requestkit.db` |\n| `default_namespace` | Default namespace for root requests | `default` |\n\n\n## Namespaces\n\nRequestkit automatically organizes requests by namespace using the first path segment:\n```bash\n# Namespace: stripe\ncurl http://localhost:4000/stripe/payment-webhook\n\n# Namespace: github\ncurl http://localhost:4000/github/push-event\n```\n\nFilter by namespace in the web UI. Requests to `/` use the `default_namespace` from your config.\n\n\n## Sending requests\n\nCreate JSON files to send HTTP requests and test your APIs. Requestkit loads request definitions from:\n\n1. `./.requestkit/requests/:namespace/:name.json` (project-specific)\n2. `~/.config/requestkit/requests/:namespace/name.json` (user-wide)\n\nExample: (`.requestkit/requests/api/create-user.json`):\n```json\n{\n  \"method\": \"POST\",\n  \"url\": \"http://localhost:3000/api/users\",\n\n  \"headers\": {\n    \"Content-Type\": \"application/json\"\n  },\n\n  \"body\": \"{\\\"name\\\": \\\"John Doe\\\", \\\"email\\\": \\\"john@example.com\\\"}\"\n}\n```\n\n\n## Help\n\n```bash\nrequestkit help\n```\n\n\n## License\n\nRequestkit is released under the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frails-designer%2Frequestkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frails-designer%2Frequestkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frails-designer%2Frequestkit/lists"}