Convert TSV to XML

Paste your Tab-Separated Values (TSV) and convert it to Extensible Markup Language (XML) in one click. Runs entirely in your browser — no upload, no signup.

Convert this via the API (curl)
curl -X POST "https://data.wrapper-agency.com/api/v1/convert" \
  -H "Content-Type: application/json" \
  -d '{"from":"tsv","to":"xml","data":"id\tname\trole\tactive\n1\tAda Lovelace\tEngineer\ttrue\n2\tAlan Turing\tResearcher\tfalse"}'

Free conversion API — no key during beta. POST { from, to, data }, get back the converted string. All conversion runs server-side; nothing is stored.

TSV vs XML

TSV
Like CSV but tab-delimited — friendlier when your data contains commas.
XML
A verbose, tag-based markup format common in enterprise systems, SOAP, RSS, and legacy feeds.

How to convert TSV to XML

FormatForge parses your TSV into an in-memory data structure, then serializes it as XML. Numbers, booleans, and null values are preserved, and nested structures are mapped to XML's native shape.

Example

id	name	role	active
1	Ada Lovelace	Engineer	true
2	Alan Turing	Researcher	false
<?xml version="1.0" encoding="UTF-8"?>
<root>
  <item>
    <id>1</id>
    <name>Ada Lovelace</name>
    <role>Engineer</role>
    <active>true</active>
  </item>
  <item>
    <id>2</id>
    <name>Alan Turing</name>
    <role>Researcher</role>
    <active>false</active>
  </item>
</root>

Convert TSV to XML in code

Send the conversion to the free API and get the result back as a string:

curl -X POST "https://data.wrapper-agency.com/api/v1/convert" \
  -H "Content-Type: application/json" \
  -d '{"from":"tsv","to":"xml","data":"...your TSV as a string..."}'

Full reference: the conversion API. For bulk or very large payloads, see the paid bulk endpoint.

FAQ

Does converting TSV to XML change my data?
No — the conversion is structural. Your values are preserved; only the serialization format changes.
Is my data uploaded anywhere?
The on-page converter runs locally in your browser. The API processes your payload server-side and stores nothing.

Other conversions