Get All Blogs RSS Feed
curl --request GET \
--url https://api.example.com/blogs/feedimport requests
url = "https://api.example.com/blogs/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/blogs/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/blogs/feed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/blogs/feed"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/blogs/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/blogs/feed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyBlog
Get All Blogs RSS Feed
Get an RSS 2.0 feed of all published blog posts
GET
/
blogs
/
feed
Get All Blogs RSS Feed
curl --request GET \
--url https://api.example.com/blogs/feedimport requests
url = "https://api.example.com/blogs/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/blogs/feed', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/blogs/feed",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/blogs/feed"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/blogs/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/blogs/feed")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyReturns an RSS 2.0 XML feed containing all published blog posts. This endpoint does not require authentication.
Use this to provide a single RSS subscription URL for all of your blog content.
Request
curl -X GET "https://app.shipstar.ai/api/v1/blogs/feed"
const response = await fetch('https://app.shipstar.ai/api/v1/blogs/feed');
const rss = await response.text();
import requests
response = requests.get('https://app.shipstar.ai/api/v1/blogs/feed')
rss = response.text
Response
Returns an RSS 2.0 XML document withContent-Type: application/xml containing all published blog posts.
Example Response
200
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>My Product - Blog</title>
<description>Latest blog posts and updates</description>
<item>
<title>What We Shipped This Week</title>
<description>This week we focused on improving the dashboard experience...</description>
<pubDate>Mon, 31 Mar 2025 12:00:00 GMT</pubDate>
</item>
<item>
<title>Introducing Smart Notifications</title>
<description>We're excited to announce our new notification system...</description>
<pubDate>Mon, 24 Mar 2025 12:00:00 GMT</pubDate>
</item>
</channel>
</rss>
Was this page helpful?
⌘I