Miniflux API

# 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" }'