ToolAssay

Convert XML to clean JSON

Convert XML to clean JSON. POST raw XML (XML or text/plain Content-Type) or a JSON envelope {xml, alwaysArray}. Attributes land under "@_" keys, mixed-content text under "#text", repeated siblings become arrays, and alwaysArray forces arrays for listed tags even on a single occurrence. Numeric character references decode. DTD entities and DOCTYPE internal subsets rejected (anti-XXE / billion-laughs). Max 5 MB.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
23 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://402utils.com/v1/xml-to-json

CategoryEverything else
Provider host402utils.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 23 ms

Example input (from the provider)

{
  "body": {
    "alwaysArray": [
      "item"
    ],
    "xml": "<order id=\"A-17\"><item sku=\"X1\">Caf\u00e9 grinder</item><item sku=\"X2\">Filter</item></order>"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "description": "JSON envelope. Alternatively POST the raw XML document directly with an XML or text/plain Content-Type (no envelope needed).",
          "properties": {
            "alwaysArray": {
              "description": "Tag names that must always parse as arrays, even when only one occurrence exists (max 100).",
              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "xml": {
              "description": "XML document to convert. Max 5 MB UTF-8. DTD entity declarations and DOCTYPE internal subsets are rejected (422).",
              "type": "string"
            }
          },
          "required": [
            "xml"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "description": "The converted document.",
          "properties": {
            "json": {
              "description": "Parsed document keyed by the root tag. Attributes are kept under \"@_\"-prefixed keys, text of mixed content under \"#text\", repeated siblings become arrays; numeric- and boolean-looking values are coerced to numbers/booleans.",
              "type": "object"
            },
            "root": {
              "description": "Root tag name.",
              "type": "string"
            }
          },
          "required": [
            "json",
            "root"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON