tsv
FormatConverts an array of objects into TSV (tab-separated values) text. Like csv but uses tab as the delimiter. Sets the response Content-Type to text/tab-separated-values.
Syntax
tsvUse cases
| Use case | Description | URL | |
|---|---|---|---|
| Tab-separated repo list | Export repo data as TSV for tools that handle tabs better than commas. | https://httpip.es/api/pipe/fetch:https://api.github.com/users/octocat/repos|rsort:stargazers_count|head:10|pick:name,stargazers_count,language|tsv | |
| TSV for database import | Many databases accept TSV for bulk imports — export users in that format. | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/users|pick:id,name,email|tsv | |
| TSV for shell processing | Tab-separated output pairs well with awk for field-based shell processing. | https://httpip.es/api/pipe/fetch:https://jsonplaceholder.typicode.com/posts|filter:userId,eq,1|pick:id,title|tsv |