aliases | category | classification | date | date_modified | draft | id | image | links | local_archive_links | pinned | series | tags | title | type | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
api |
public |
2024-06-22 02:08:55 -0700 |
2024-06-23 11:19:25 -0700 |
false |
20240622090855 |
false |
false |
|
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" }'