How to use HTTP composer
- 1. Set method and URL. Must be a valid URL for fetch.
- 2. Add headers and body. Headers are Name: value lines.
- 3. Copy raw HTTP or fetch. Use them in your own client.
- 4. PureDevKit does not send. No CORS proxy.
About this tool
A request composer that stops at text. You get a raw HTTP/1.1 message and a fetch snippet with the same method, URL, headers, and body — useful for tickets and for pasting into an API client.
Why not send?
A static site cannot safely proxy arbitrary URLs. Sending would also leak secrets to a backend we do not have.
Host header
Derived from the URL when emitting raw HTTP.
Code examples
fetch
fetch("https://api.example.com/v1/users")