Skip to content
Utilerio
All endpoints

JSON to XML

POST/api/v1/tools/json-to-xml

Turn JSON into well-formed XML with a root element you choose.

Authentication

Requires an API key in the X-API-Key header.

Try it

POST/api/v1/tools/json-to-xml

Parameters

jsonstringrequired

JSON text to convert.

rootNamestringoptional

Root element name. Default root.

arrayItemNamestringoptional

Array item element name. Default item.

includeDeclarationbooleanoptional

Include the <?xml?> declaration. Default true.

indentintegeroptional

Output indentation. Default 2.

24

Request body

{
  "json": "{\"a\":1}"
}

Response codes

  • 200Success.
  • 400Invalid request — check your body or parameters.
  • 401Missing or invalid API key.
  • 403The API key is not scoped to this endpoint.
  • 429Rate limit exceeded — retry after a short wait.

Language

cURL

Request

curl -X POST https://utilerio.com/api/v1/tools/json-to-xml \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"json":"{\"a\":1}"}'

Response

{ "xml": "<root><a>1</a></root>" }