Data Transform
TSV parse API
Parses tab-separated values into records (header row -> objects) with optional type coercion. Answers 'How do I parse TSV into JSON?', 'How do I read tab-delimited data?'.
Price$0.01per request
MethodPOST
Route/v1/data-transform/tsv-parse
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
data-transformtsvparsetabtabularrecordswrangle
API URL
Integration docshttps://x402.hexl.dev/v1/data-transform/tsv-parseExample request
{
"tsv": "a\tb\n1\t2",
"coerce": true
}Example response
{
"records": [
{
"a": 1,
"b": 2
}
],
"rowCount": 1,
"columns": [
"a",
"b"
]
}Input schema
{
"type": "object",
"required": [
"tsv"
],
"properties": {
"tsv": {
"type": "string",
"examples": [
"a\tb\n1\t2"
]
},
"coerce": {
"type": "boolean",
"examples": [
true
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}