Overview
The Old Reader API provides programmatic access to The Old Reader, a classic RSS feed reader service. It allows developers to manage subscriptions, fetch unread articles, and mark items as read on behalf of authenticated users. It is useful for building custom RSS reader interfaces or automation workflows around your feed subscriptions.
Beginner Tip
You need to authenticate using your The Old Reader account credentials to obtain a token, then pass that token in an Authorization header for subsequent requests. Start with the /reader/api/0/subscription/list endpoint to list your subscribed feeds.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from The Old Reader",
"description": "RSS reader",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
subscriptions[].id Unique feed identifier used to reference this subscription in other API calls subscriptions[].title Display name of the subscribed RSS feed subscriptions[].url RSS feed URL that The Old Reader is polling subscriptions[].htmlUrl Website URL associated with the RSS feed subscriptions[].unread_count Number of unread articles in this subscription Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://github.com/theoldreader/api";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Associated Press
The Associated Press Developer API gives you programmatic access to AP news content and metadata, one of the most trusted wire services in the world.
Currents
⭐ Beginner's PickCurrents API delivers the latest news from thousands of sources, blogs, and online forums in real time.
GNews
⭐ Beginner's PickGNews is a news search API that aggregates articles from thousands of sources worldwide and lets you filter by keyword, language, country, and topic.
MarketAux
MarketAux delivers real-time financial news with sentiment analysis, ticker tagging, and market statistics in a clean JSON format.
Mediastack
⭐ Beginner's PickMediastack is a simple REST API that delivers live and historical news articles from thousands of global sources.