Feedly Tags API

The Tags API API from Feedly — 2 operation(s) for tags api.

Operations 2

PUT /{streamId} Add articles to board #
DELETE /{streamId}/{entryId} Delete article from Board #

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/feedly-tags-api-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 email required.

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

OpenAPI Specification

feedly-tags-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tags API
  version: '1.0'
servers:
- url: https://api.feedly.com/v3/tags/
security:
- sec0: []
tags:
- name: Tags API
paths:
  /{streamId}:
    put:
      summary: Add articles to board
      description: Add articleIds to team board
      operationId: add-articles-to-board
      parameters:
      - name: streamId
        in: path
        description: The streamId of your Team Board (Must be URL encoded)
        schema:
          type: string
        required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                RAW_BODY:
                  type: string
                  description: 'Example JSON Body: {   "entryId": "gRtwnDeqCDpZ42bXE9Sp7dNhm4R6NsipqFVbXn2XpDA=_13fb9d6f274:2ac9c5:f5718180" }'
                  format: json
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: '{null}'
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \"errorCode\": 400,\n  \"requestId\": \"99532293cf65ef8c-PDX\",\n  \"errorMessage\": \"invalid tag\"\n}"
              schema:
                type: object
                properties:
                  errorCode:
                    type: integer
                    example: 400
                    default: 0
                  requestId:
                    type: string
                    example: 99532293cf65ef8c-PDX
                  errorMessage:
                    type: string
                    example: invalid tag
        '403':
          description: '403'
          content:
            application/json:
              examples:
                Result:
                  value: '{Forbidden}'
      deprecated: false
      tags:
      - Tags API
  /{streamId}/{entryId}:
    delete:
      summary: Delete article from Board
      description: Remove an article from a team board by its entry ID.
      operationId: delete-article-from-board
      parameters:
      - name: streamId
        in: path
        description: 'Must be URL encoded.  The board''s stream ID. Format: enterprise/{enterpriseName}/tag/{boardId}'
        schema:
          type: string
        required: true
      - name: entryId
        in: path
        description: The article entry ID to remove from the board
        schema:
          type: string
        required: true
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      tags:
      - Tags API
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true