Spotted something off?Report on Discord
guides
Json Post Request
Send structured JSON payloads to any endpoint using a real browser session with request.post.
Updated May 28, 2025
Send structured JSON payloads using a
POSTrequest through a real browser session for interacting with modern APIs expecting JSON-formatted input.
Command
"cmd": "request.post"
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | Yes | The endpoint to send the POST request to. |
postData |
object | Yes | JSON object to be sent in the body of the request. |
customHeaders |
object | Yes | Set content-type to application/json for JSON requests. |
Example
bash12 lines
Want to run this request directly in your browser?to try it live with your own API key.
Notes
- Ensure that
content-typeis explicitly set toapplication/json. - The
postDatavalue should be a valid JSON object. - You can also include additional headers like authorization tokens or user-agents under
customHeaders.
Use Cases
- Authenticating to RESTful APIs
- Submitting form data in JSON format
- Posting content to webhooks or services like Zapier, Slack, etc.