NewsBlur feed-management API

Subscriptions, folders and organization.

Operations 11

POST /reader/add_url Subscribe to a feed or website URL #
POST /reader/add_folder Create a folder #
POST /reader/move_feed_to_folder Move a feed to a folder #
POST /reader/move_folder_to_folder Move a folder into another folder #
POST /reader/rename_feed Rename a feed #
POST /reader/rename_folder Rename a folder #
POST /reader/delete_feed Unsubscribe from a feed #
POST /reader/delete_folder Delete a folder and unsubscribe its feeds #
POST /reader/save_feed_order Reorder feeds and folders #
POST /reader/save_search Create a saved-search shortcut #
POST /reader/delete_search Remove a saved-search shortcut #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/newsblur-feed-management-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

newsblur-feed-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NewsBlur authentication Feed Management API
  description: NewsBlur is a personal news reader (RSS/Atom aggregator) that brings people together to talk about the world. The HTTP API exposes account, feed, story, social ("blurblog"), intelligence-classifier, and OPML import/export operations. This OpenAPI description was generated by API Evangelist from the publicly documented endpoint reference at https://www.newsblur.com/api and the open-source NewsBlur codebase (github.com/samuelclay/NewsBlur). It is a faithful structuring of the documented surface, not a provider-published spec.
  version: '2026.07'
  contact:
    name: NewsBlur
    url: https://www.newsblur.com/api
    email: samuel@newsblur.com
  license:
    name: MIT
    url: https://github.com/samuelclay/NewsBlur/blob/master/LICENSE
  x-source: https://www.newsblur.com/api
servers:
- url: https://www.newsblur.com
  description: Production
security:
- cookieAuth: []
- oauth2Bearer: []
tags:
- name: feed-management
  description: Subscriptions, folders and organization.
paths:
  /reader/add_url:
    post:
      operationId: addUrl
      tags:
      - feed-management
      summary: Subscribe to a feed or website URL
      responses:
        '200':
          $ref: '#/components/responses/Ok'
        '400':
          $ref: '#/components/responses/BadRequest'
  /reader/add_folder:
    post:
      operationId: addFolder
      tags:
      - feed-management
      summary: Create a folder
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/move_feed_to_folder:
    post:
      operationId: moveFeedToFolder
      tags:
      - feed-management
      summary: Move a feed to a folder
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/move_folder_to_folder:
    post:
      operationId: moveFolderToFolder
      tags:
      - feed-management
      summary: Move a folder into another folder
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/rename_feed:
    post:
      operationId: renameFeed
      tags:
      - feed-management
      summary: Rename a feed
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/rename_folder:
    post:
      operationId: renameFolder
      tags:
      - feed-management
      summary: Rename a folder
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/delete_feed:
    post:
      operationId: deleteFeed
      tags:
      - feed-management
      summary: Unsubscribe from a feed
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/delete_folder:
    post:
      operationId: deleteFolder
      tags:
      - feed-management
      summary: Delete a folder and unsubscribe its feeds
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/save_feed_order:
    post:
      operationId: saveFeedOrder
      tags:
      - feed-management
      summary: Reorder feeds and folders
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/save_search:
    post:
      operationId: saveSearch
      tags:
      - feed-management
      summary: Create a saved-search shortcut
      responses:
        '200':
          $ref: '#/components/responses/Ok'
  /reader/delete_search:
    post:
      operationId: deleteSearch
      tags:
      - feed-management
      summary: Remove a saved-search shortcut
      responses:
        '200':
          $ref: '#/components/responses/Ok'
components:
  responses:
    BadRequest:
      description: Invalid request.
      content:
        application/json:
          schema:
            type: object
    Ok:
      description: Success. NewsBlur returns a JSON object; most responses include a `result` field ("ok" or "error").
      content:
        application/json:
          schema:
            type: object
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: newsblur_sessionid
      description: Session cookie set by POST /api/login.
    oauth2Bearer:
      type: http
      scheme: bearer
      description: OAuth 2.0 access token passed as a Bearer token in the Authorization header. Client credentials are issued by NewsBlur (contact samuel@newsblur.com).