> feeds
RSS & JSON Feeds
Access Libertas content programmatically. No accounts, no API keys, no tracking users. Subscribe with any feed reader or integrate directly into your applications.
Checking feeds...
Verifying availability
Last published
...
Insight Feeds
Individual insights published as they are processed. Updated multiple times per day.
Weekly Digest Feeds
Weekly summaries of freedom tech developments. Published every Sunday.
Usage Examples
cURL
Fetch feeds from the command line
bash
# Insights RSS Feed curl -s https://libertas.fgu.tech/insights-rss.xml # Insights JSON Feed curl -s https://libertas.fgu.tech/insights-feed.json | jq . # Weekly Digests curl -s https://libertas.fgu.tech/digests-rss.xml
JavaScript / TypeScript
Fetch and parse the JSON feed in your application
javascript
// Fetch the insights feed
const response = await fetch('https://libertas.fgu.tech/insights-feed.json');
const feed = await response.json();
// Access posts
feed.items.forEach(item => {
console.log(item.title);
console.log(item.url);
console.log(item._libertas.freedom_relevance_score);
});Python
Parse the RSS feed with feedparser
python
import feedparser
# Parse the insights RSS feed
feed = feedparser.parse('https://libertas.fgu.tech/insights-rss.xml')
# Access posts
for entry in feed.entries:
print(entry.title)
print(entry.link)
print(entry.summary)n8n Workflow
Ingest Libertas posts into your n8n automation
json
// HTTP Request Node configuration
{
"url": "https://libertas.fgu.tech/insights-feed.json",
"method": "GET",
"responseFormat": "json"
}
// Then use Item Lists node to iterate over feed.itemsPopular Feed Readers
JSON Feed Schema
The JSON feed follows the JSON Feed 1.1 specification with Libertas-specific extensions:
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Libertas - Freedom Tech Signals",
"home_page_url": "https://libertas.fgu.tech",
"feed_url": "https://libertas.fgu.tech/insights-feed.json",
"description": "Curated insights on freedom technology...",
"language": "en-US",
"items": [
{
"id": "unique-post-id",
"url": "https://libertas.fgu.tech/posts/example-post",
"title": "Post Title",
"summary": "TL;DR of the insight...",
"content_text": "Key points as bullet list...",
"date_published": "2026-01-07T12:00:00Z",
"date_modified": "2026-01-07T12:00:00Z",
"tags": ["bitcoin", "privacy"],
"_libertas": {
"freedom_relevance_score": 85,
"credibility_score": 90,
"citations": ["https://source.example/article"]
}
}
]
}Privacy Commitment
- No tracking pixels in feed content
- No analytics or usage monitoring
- No authentication required
- Open source feed generation