latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Feeds

Get all feeds (public + user's private feeds)

Retrieves all public feeds (feeds with no token) and user's private feeds if token is provided.

Public Access:

  • Public feeds are available without authentication
  • Returns all feeds where token is null

Authenticated Access:

  • Returns public feeds + user's private feeds
  • Requires valid API token in Authorization header
get/feeds

Response

List of feeds (public + user's private feeds)

idinteger

Unique identifier for the feed

namestring

Name of the feed

tokenstring

Client token (null for public feeds)

feedTypeIdinteger

Type of feed (1 for X/Twitter, 2 for Reddit, 3 for YouTube channel, 4 for RSS, 5 for X News topic)

internalIdstring

Internal identifier for the feed source (username for X, subreddit for Reddit, channel source ID for YouTube)

createdOnstring date-time

Creation timestamp

Example response

[
  {
    "id": 1,
    "name": "Tech News Twitter Feed",
    "token": "abc123-def456-ghi789",
    "feedTypeId": 1,
    "internalId": "elonmusk",
    "createdOn": "2023-01-01T12:00:00Z"
  }
]