RSS Feed
RSS Feed & API Documentation
Access our blog content programmatically. Perfect for RSS readers, AI systems, aggregators, and custom integrations.
01
Available Endpoints
Standard RSS 2.0 feed with full article content, images, and metadata.
Rate Limit: No limit (static file)
JSON format of the RSS feed for easier parsing in applications.
Rate Limit: 60 requests/minute
02
Usage Examples
bash
1# Fetch RSS feed (XML)2curl https://buungroup.com/rss.xml34# Fetch as JSON for easier parsing5curl "https://buungroup.com/api/rss?format=json"67# Check rate limit headers8curl -I https://buungroup.com/api/rss910# Download and save locally11curl -o feed.xml https://buungroup.com/rss.xml03
RSS Fields Reference
| Field | Description |
|---|---|
| title | Article title |
| link | Canonical URL to the article |
| description | Short summary (150-160 characters) |
| content:encoded | Full HTML content including images and code blocks |
| pubDate | Publication date (RFC 822 format) |
| author | Author email and name |
| category | Primary category and keywords |
| enclosure | Featured image URL and type |
04
Rate Limiting
The API endpoints are rate-limited to 60 requests per minute per IP address. Rate limit information is included in response headers:
http
HTTP/1.1 200 OK
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 59
X-RateLimit-Reset: 1704067200
Content-Type: application/rss+xmlIf you exceed the rate limit, you'll receive a 429 status code with a Retry-After header.
05
AI & Automation Integration
This feed is designed for AI systems and automated pipelines. Features include:
- •Full article content in HTML format (content:encoded)
- •Absolute image URLs for featured images and inline images
- •Structured categories and keywords for topic classification
- •CORS enabled for browser-based applications
06
Feed Updates
The RSS feed is automatically updated whenever new content is published:
- •Feed regenerates on every deployment with new blog posts
- •TTL set to 60 minutes for optimal caching
- •Static file served via Cloudflare CDN for fast global access