Submit forms with cURL

Collect submission data from your NoCodeForm endpoints using cURL

Overview

cURL is a computer software project providing a library and command-line tool for transferring data using various network protocols.

Example

First of all, create a simple HTML form like this:

curl -X POST https://nocodeform.io/f/{your-form-id} \
  -H 'Content-Type: application/json' \
  -d '{"email": "[email protected]", "name": "John Snow"}' -v

Above cURL request submits a JSON payload with the following data:

{
  "email": "[email protected]",
  "name": "John Snow"
}