Skip to content

Opml To Csv API

POST https://api.findutils.com/api/tools/opml-to-csv/execute

Flatten an OPML subscription export (Feedly, Inoreader, NetNewsWire, podcast apps) into CSV with one row per feed: title, xml_url, html_url, folder_path, description and type. Nested folders become a folder_path joined with " / ". An outline carrying xmlUrl or url is a feed; an outline without one is a folder, and include_folders adds a row for each folder too. OPML 1.0 and 2.0 are read without a DOM, attribute names are matched case-insensitively and entities are decoded. Feed URLs are never fetched or checked.

Request body

application/json
  • input

    string required

    OPML (XML) text.

  • include_folders

    boolean optional

    Also write a row for each folder outline, with type "folder". Default false. Default false.

  • delimiter

    string optional

    Field separator: "," (default), ";" or a tab. Default ",".

Example arguments

Verified
{
  "input": "<?xml version=\"1.0\"?>\n<opml version=\"2.0\"><head><title>Feeds</title></head><body><outline text=\"Tech\"><outline text=\"Example\" type=\"rss\" xmlUrl=\"https://example.com/feed.xml\" htmlUrl=\"https://example.com/\"/></outline></body></opml>\n"
}