Turn XML into JSON from a cell. Returns structured JSON down a column — Google Sheets or Excel, no code.
It's one of 250+ live sources you reach with a single =VERVE() function — served from APIVerve's production data engine, billed at 1 credit per resolved cell, and refreshed on whatever cadence you set. No API keys to wrangle, no scripts, no exports.
Fill =VERVE("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>") beside a column of input and get the converted value back for every row — a batch conversion done in one drag.
Turn one format into another right in the cell instead of round-tripping through a script or an online tool.
Pipe the converted value straight into the formula or chart that needs it.
The same function works in both apps — install once, sign in with your key, and type it into any cell.
Install from the Workspace Marketplace, then drop the formula into a cell. Autocomplete suggests the source and its fields.
=VERVE("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>")Same source, same arguments, same key — in Excel on desktop, the web, or mobile. Excel namespaces it as VERVE.CALL. Drag to fill a whole column.
=VERVE.CALL("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>")Add a field name as the last argument to land just that value in the cell.
=VERVE("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>", "field", "note")=VERVE("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>", "field", "note.children")=VERVE("xmltojson", "<?xml version=""1.0"" encoding=""UTF-8""?>"&CHAR(10)&"<note>"&CHAR(10)&" <to>Tove</to>"&CHAR(10)&" <from>Jani</from>"&CHAR(10)&" <heading>Reminder</heading>"&CHAR(10)&" <body>Don't forget me this weekend!</body>"&CHAR(10)&"</note>", "field", "note.children.0.to.content")Everything you need to wire it into a sheet.