λΝ Feed Documentation

Discover how to use our AI-powered content discovery engine with real-time updates and machine learning curation.

curl -X GET "https://api.rss.com/feeds/v1/public" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"

Getting Started

1

Create Account

Sign up at rss.com and generate your machine learning-powered feed. No credit card required.

2

Get API Key

Access your dashboard to generate an API key for programmatic integration.

Core Concepts

AI Curation

Machine learning algorithms analyze your preferences to surface relevant content.

Real-Time Updates

Get instant notifications for new content across hundreds of sources.

Cross-Platform

Sync your content preferences across devices and platforms seamlessly.

Code Integration

JavaScript

// Fetch real-time feed
fetch('https://api.rss.com/feeds/v1/subscriptions', {
    method: 'POST',
    headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({
        topics: ['AI', 'Blockchain'],
        sources: ['techcrunch.com', 'wired.com'],
        frequency: 'realtime'
    })
});
                        

Python

import requests

response = requests.post(
    'https://api.rss.com/webhooks/subscribe',
    headers={'Authorization': 'Bearer YOUR_API_KEY'},
    json={
        'topic': 'machine-learning',
        'delivery_method': 'websocket',
        'callback_url': 'https://yourdomain.com/webhook'
    }
)
                        

API Reference

GET /feeds/public

Return public feed content

{
    "status": "success",
    "articles": [/* article data */]
}
                    

POST /webhooks/subscribe

Subscribe to real-time updates

{
    "topic": "machine-learning",
    "delivery_method": "websocket"
}