latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Feeds

Get a specific feed by ID

Retrieves a specific feed by its ID. Public feeds are accessible without authentication. Private feeds require appropriate token validation.

get/feeds/{id}

Path parameters

idinteger required

Feed ID

Response

Feed details

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