Spotted something off?Report on Discord
guides
Post Request
Send a POST request with form-encoded or JSON body to a target URL through a real browser session.
Updated May 28, 2025
Send a POST request with form-encoded or JSON body to a target URL, useful for submitting forms, logging in, or triggering APIs.
Command
"cmd": "request.post"
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
url |
string | Yes | The URL to send the POST request to. |
postData |
string | Yes | Data to send. Must be application/x-www-form-urlencoded. |
customHeaders |
object | No | Set content type to application/json to send raw JSON. |
Example
Form Data
bash7 lines
JSON Data
bash10 lines
Notes
postDatamust be a string.- If using
application/json, the JSON must be stringified. - You can combine this with other browser actions like cookies, headers, or click automation.
Use request.post when interacting with login forms, submitting data, or calling APIs that require POST payloads.