Opml To Csv API
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"
} 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 Bookmarks Html Convert a CSV of links into a Netscape bookmarks.html file that Chrome, Firefox, Edge and Safari import.
- 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.