Skip to main content

List Sources

GET
/v1/sources/{newsfeed_id}

Path parameters

ParameterTypeDescription
newsfeed_idstring (UUID)Newsfeed ID
curl https://twixb.com/api/v1/sources/f296206d-... \
  -H "X-API-Key: twxb_your_key_here"

Response

[
  {
    "id": "a174bc15-4c12-4aa1-9a1c-d2b94bdb8508",
    "newsfeed_id": "f296206d-d083-475d-a25a-711b044962d0",
    "url": "https://openai.com/blog",
    "source_type": "blog",
    "check_interval_minutes": 1440,
    "last_checked_at": "2026-03-12T14:15:39.424366",
    "is_active": true,
    "created_at": "2026-02-13T13:37:58.874522",
    "post_count": 42,
    "rss_feed_url": "https://openai.com/blog/rss.xml",
    "use_rss": true
  }
]

Response fields

FieldTypeDescription
idstring (UUID)Source ID
urlstringSource URL
source_typestringblog, x, instagram, tiktok, or reddit
check_interval_minutesintegerHow often the source is checked (default: 1440 = daily)
last_checked_atstringLast check timestamp
is_activebooleanWhether the source is actively monitored
post_countintegerTotal posts discovered from this source
rss_feed_urlstringDiscovered RSS feed URL (blogs only)
use_rssbooleanWhether RSS is used for ingestion