Skip to main content
Converts a Form URL encoded string into a data object. This is the format a web form or query string uses, where values are joined with & and written as key=value, such as sku=A1&name=Wool+scarf. Use this when a value arrives in that shape, for example the body of a form submission or a captured query string, and you want to turn it back into structured data you can read field by field.

Fields

Sample data

FieldValue
CompatibilityPHP compatible (default)
Input:
{
    "payload": "sku=A1&name=Wool+scarf&tags[]=red&tags[]=warm"
}
Output:
{
    "payload": {
        "sku": "A1",
        "name": "Wool scarf",
        "tags": [
            "red",
            "warm"
        ]
    }
}