Csv To Bookmarks Html API
https://api.findutils.com/api/tools/csv-to-bookmarks-html/execute Convert a CSV of links into a Netscape bookmarks.html file that Chrome, Firefox, Edge and Safari import. Columns are matched by name: url or href or link, title or name, folder or folder_path or path, and an optional add_date, so a sheet exported from a bookmark manager usually needs no configuration; column_map overrides any of them. A folder path builds nested folders, split on " / " when the value uses it and on "/" otherwise, so a folder genuinely called "AI/ML" survives. Every row needs an address; a row without one is skipped and listed by row number. A bare domain gains https://. Nothing is fetched and no link is checked.
Request body
application/json-
input
string required
CSV text with a header row.
-
delimiter
string optional
Field separator. Default: detected from the header (comma, semicolon, tab or pipe).
-
root_folder
string optional
Folder every link is placed under, so an import does not scatter links across the bookmark bar. Default "Imported"; pass an empty string to place them at the top level. Default
"Imported". -
column_map
object optional
Header name per field when the automatic match is wrong: url, title, folder, add_date.
Example arguments
Verified{
"input": "folder_path,title,url\nWork / Clients,Example,https://example.com/\n,Root link,https://root.example/\n"
} More Data tools
- Api Docs Generator Return API documentation generated from a list of endpoints, as Markdown (with table of contents, request/response examples) or as an OpenAP
- Bookmarks Html To Csv Convert a browser bookmarks.html export from Chrome, Firefox, Edge, Safari or any other browser that writes the Netscape bookmark format int
- Csv To Json Parse CSV text into an array of objects keyed by the header row.
- Csv To Ndjson Convert CSV into newline-delimited JSON (NDJSON, JSON Lines, .jsonl): one JSON object per line, keyed by the header row.
- Csv To Sql Convert CSV text into SQL INSERT statements, optionally preceded by a CREATE TABLE.
- Csv To Tsv Convert comma-separated values to tab-separated values, the format spreadsheet paste, psql and mysql --batch expect.