The Old Reader API

News / API Key Intermediate HTTPS
Varies by plan (check documentation)

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

Use case: Integrate rss reader data into web and mobile applications
The Old Reader data via REST API
JSON-formatted response data
Requires API key authentication

Example Response

JSON 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

401 Unauthorized The Authorization header is missing or the token has expired
Re-authenticate by posting your credentials to /reader/accounts/ClientLogin to get a fresh auth token
400 Bad Request A required parameter such as output format is missing
Add output=json to your query string to specify the response format explicitly
Empty subscription list No feeds are currently subscribed to the account
Log into The Old Reader web interface and add some RSS subscriptions before calling the API

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 10/20
🔒 Security 15/15
🛠 Developer XP 12/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS UNKNOWN
Category News
Difficulty Intermediate
Verified: 2026-04-04

Similar APIs

View All →