Skip to content

Latest commit

 

History

History
46 lines (43 loc) · 1007 Bytes

miniflux-api.md

File metadata and controls

46 lines (43 loc) · 1007 Bytes
aliases archive_links category classification date date_modified draft id image links local_archive_links pinned print series tags title type
miniflux-api
api
public
2024-06-22 02:08:55 -0700
2024-06-23 11:19:25 -0700
false
20240622090855
false
false
miniflux
rss
curl
api
Miniflux API
tech-note
# Feeds in a category:
curl --request GET \
  --url https://miniflux/v1/categories/31/feeds \
  --header "Content-Type: application/json" \
  --header "X-Auth-Token: <api-token>"

# Add feed URL to category (subscribe to feed):
curl --request POST \
  --url https://miniflux/v1/feeds \
  --header "Content-Type: application/json" \
  --header "X-Auth-Token: <api-token>" \
  --data '{ "feed_url": "<feed-url>", "category_id": 31 }'

# Mark entries as read:
curl --request PUT \
 --url https://miniflux/v1/entries \
 --header "Content-Type: application/json" \
 --header "X-Auth-Token: <api-token>" \
 --data '{ "entry_ids": [248337, 248338], "status": "read" }'