Skip to content

Csv To Bookmarks Html API

POST 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"
}