The Old Reader API
APIAPI for accessing The Old Reader RSS reader platform data
Overview
The Old Reader API is a RESTful interface for interacting with the The Old Reader RSS reader service. Key endpoints include fetching user subscriptions, retrieving unread/read articles, marking items as read/unread, searching feeds, and managing folders. Responses are in JSON format. Use cases include building custom RSS client apps, automating content curation workflows, syncing RSS data across devices, integrating feeds into productivity tools, and creating personalized news dashboards.
Example Integration (JavaScript)
fetch('https://github.com/theoldreader/api')
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err)); Key Features
- RESTful API
- JSON Response Format
- RSS Feed Management
- Article Status Updates
- Search Capabilities
Frequently Asked Questions
? Is The Old Reader API free to use?
Yes, the API is free for personal use, though rate limits apply to ensure fair usage across all users.
? Does it require an API Key?
Yes, authentication via an API token or OAuth is required to access user-specific data like subscriptions and articles.
? What is the response format?
All API endpoints return data in JSON format, which is easy to parse and integrate into most applications.
Top Alternatives
People Also Ask about The Old Reader API
Tool Info
Pros
- ⊕ Straightforward RESTful design
- ⊕ Comprehensive documentation
- ⊕ Supports core RSS reader operations
- ⊕ Free for personal use
Cons
- ⊖ Rate-limited requests
- ⊖ No official SLA
- ⊖ Requires user authentication
- ⊖ Limited advanced analytics