Complete guide to integrating Site 2 RSS Factory into your applications
The Site 2 RSS Factory API allows you to programmatically generate RSS feeds from any website. All API requests require authentication using your API key.
Base URL: https://site2rssfactory.com/api
All API requests must include your API key in the X-API-Key header:
You can find your API key in your dashboard after logging in.
Converts any website into an RSS feed. Supports custom CSS selectors for precise content extraction.
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | The URL of the website to convert to RSS |
| format | string | No | Output format: rss or atom (default: rss) |
| maxItems | integer | No | Maximum number of items to include (default: 20, max depends on your plan) |
| itemSelector | string | No | CSS selector for feed items (Professional+ plans) |
| titleSelector | string | No | CSS selector for item titles (Professional+ plans) |
| linkSelector | string | No | CSS selector for item links (Professional+ plans) |
| summarySelector | string | No | CSS selector for item summaries (Professional+ plans) |
Returns an RSS or Atom feed in XML format
Alternative method to generate feeds using JSON request body.
Retrieve all your saved feed configurations.
Retrieve all your mashed feeds (combined RSS feeds from multiple sources).
Combine 2-10 RSS feeds into a single unified feed.
Rate limits depend on your subscription plan:
| Plan | Update Interval | Max Feeds | Max Items/Feed |
|---|---|---|---|
| Starter | 6 hours | 10 | 25 |
| Basic | 1 hour | 50 | 50 |
| Professional | 15 minutes | 200 | 100 |
| Enterprise | 5 minutes | 500 | 250 |
| Code | Description |
|---|---|
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing API key |
| 403 | Forbidden - Feature not available in your plan |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Internal Server Error |
Need help? Contact our support team at support@therankingstore.com
Check your dashboard to view your API usage and current plan limits.