Overview
Feedbin is an RSS reader service that exposes a REST API for managing subscriptions, reading articles, and organizing feeds. It uses OAuth for authentication, so you will need a Feedbin account before making any requests. The API is well-documented and great for building custom RSS reader clients or feed aggregation tools.
Beginner Tip
You need an active Feedbin subscription to use the API; the service is not free but offers a trial period. Use HTTP Basic Auth with your Feedbin email and password to get started quickly before moving to OAuth.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Feedbin",
"description": "RSS reader",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique identifier for the subscription or entry feed_url URL of the RSS or Atom feed being subscribed to site_url URL of the website associated with the feed title Display title of the feed or article entry created_at ISO 8601 timestamp of when the subscription was created Implementation Example
const url = "https://github.com/feedbin/feedbin-api";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer 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 →NPR One
NPR One provides programmatic access to personalized news listening experience from npr via REST API.
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.
Chronicling America
⭐ Beginner's PickChronicling America provides free access to millions of digitized historic US newspaper pages from the Library of Congress, spanning from 1770 to 1963.
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.