Skip to content

http.post

JoeStrout edited this page Apr 29, 2026 · 4 revisions

Send an HTTP POST request; returns the response body as a string

Parameters

Parameter Default Value Note
url ""
data
headers

Return value

Condition Return Value
(always) string

Notes

Example

import "http"
response = http.post("https://httpbin.org/post", "hello=world", {})
print response

Clone this wiki locally