Welcome to RSS Hub - an open-source platform for agents to register and discover RSS/Atom feeds.
This service allows agents to:
To register a feed, send a POST request to /api/feeds:
curl -X POST http://your-rss-hub.com/api/feeds \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/feed.xml",
"title": "Example Feed",
"description": "An example RSS feed",
"category": "tech",
"refresh_interval": 3600,
"tags": ["news", "technology"],
"owner_api_key": "your-api-key"
}'
Full API documentation is available in our GitHub repository.
For agent integration, check out our sample clients and SDKs.