cURL
curl --request POST \
--url https://api.feedspace.io/v3/pages/selected-feeds \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_feeds": [
"feed-text-item-9793",
"feed-video-item-123",
"feed-audio-item-544",
"feed-social-item-170021"
]
}
'import requests
url = "https://api.feedspace.io/v3/pages/selected-feeds"
payload = { "selected_feeds": ["feed-text-item-9793", "feed-video-item-123", "feed-audio-item-544", "feed-social-item-170021"] }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
selected_feeds: [
'feed-text-item-9793',
'feed-video-item-123',
'feed-audio-item-544',
'feed-social-item-170021'
]
})
};
fetch('https://api.feedspace.io/v3/pages/selected-feeds', 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.feedspace.io/v3/pages/selected-feeds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'selected_feeds' => [
'feed-text-item-9793',
'feed-video-item-123',
'feed-audio-item-544',
'feed-social-item-170021'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.feedspace.io/v3/pages/selected-feeds"
payload := strings.NewReader("{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.feedspace.io/v3/pages/selected-feeds")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/pages/selected-feeds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 24132,
"unique_feedback_id": "S4ZbTv",
"response": "354",
"comment": "<p class=\"text-gray-800 dark:text-neutral-200\">I've looked at tools like Feedspace for a while and nothing really clicked until this one. I grabbed Tier 1 for a client and it's been great, which quickly convinced me to purchase Tier 2 for myself. The extra widgets and longer recording times make a big difference. Setup was super easy, and I even jumped on a 1:1 with Chirag (the CEO), who was genuinely helpful. Honest take: Tier 1 is a bit limiting. If you're serious about using Feedspace, Tier 2+ is where the real value is. Totally worth it. Test</p>",
"sentiment_id": null,
"extra_details": {
"answer_type": null,
"approved": true,
"author_id": 922322,
"author_name": "DarkHorse"
},
"app_user_name": "DarkHorse",
"favourite": false,
"rating": 5,
"review_text": null,
"review_title": null,
"reviewed_at": "2025-12-19T00:00:00.000000Z",
"created_at": "2025-12-22T14:49:08.000000Z",
"feed_type": "social_feed",
"rating_type": 1,
"feed_form_id": null,
"social_feed_type": "social",
"customer_avatar": "uploads/gx8N4Q/appsumo-reviews/appsumo-review-author-profile-YuzS-1766414944.jpeg",
"review_at": "Dec 19, 2025",
"review_url": "https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/",
"customer_designation": null,
"customer_company": "",
"product_name": "",
"social_platform": {
"id": 36,
"name": "AppSumo",
"slug": "appsumo",
"icon_url": "/assets/img/social-icons/v2/appsumo.png",
"icon_full_url": "https://feedspace-staging.s3.us-east-2.amazonaws.com/assets/img/social-icons/v2/appsumo.png"
},
"workspace_name": "Primary",
"display_review_url": "https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/",
"attachments": []
}
]
}Pages
Get Selected Feeds
Get feed details for selected feed identifiers. This endpoint accepts an array of feed identifiers and returns the corresponding feed details formatted for pages.
POST
/
pages
/
selected-feeds
cURL
curl --request POST \
--url https://api.feedspace.io/v3/pages/selected-feeds \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_feeds": [
"feed-text-item-9793",
"feed-video-item-123",
"feed-audio-item-544",
"feed-social-item-170021"
]
}
'import requests
url = "https://api.feedspace.io/v3/pages/selected-feeds"
payload = { "selected_feeds": ["feed-text-item-9793", "feed-video-item-123", "feed-audio-item-544", "feed-social-item-170021"] }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
selected_feeds: [
'feed-text-item-9793',
'feed-video-item-123',
'feed-audio-item-544',
'feed-social-item-170021'
]
})
};
fetch('https://api.feedspace.io/v3/pages/selected-feeds', 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.feedspace.io/v3/pages/selected-feeds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'selected_feeds' => [
'feed-text-item-9793',
'feed-video-item-123',
'feed-audio-item-544',
'feed-social-item-170021'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.feedspace.io/v3/pages/selected-feeds"
payload := strings.NewReader("{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.feedspace.io/v3/pages/selected-feeds")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/pages/selected-feeds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"selected_feeds\": [\n \"feed-text-item-9793\",\n \"feed-video-item-123\",\n \"feed-audio-item-544\",\n \"feed-social-item-170021\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 24132,
"unique_feedback_id": "S4ZbTv",
"response": "354",
"comment": "<p class=\"text-gray-800 dark:text-neutral-200\">I've looked at tools like Feedspace for a while and nothing really clicked until this one. I grabbed Tier 1 for a client and it's been great, which quickly convinced me to purchase Tier 2 for myself. The extra widgets and longer recording times make a big difference. Setup was super easy, and I even jumped on a 1:1 with Chirag (the CEO), who was genuinely helpful. Honest take: Tier 1 is a bit limiting. If you're serious about using Feedspace, Tier 2+ is where the real value is. Totally worth it. Test</p>",
"sentiment_id": null,
"extra_details": {
"answer_type": null,
"approved": true,
"author_id": 922322,
"author_name": "DarkHorse"
},
"app_user_name": "DarkHorse",
"favourite": false,
"rating": 5,
"review_text": null,
"review_title": null,
"reviewed_at": "2025-12-19T00:00:00.000000Z",
"created_at": "2025-12-22T14:49:08.000000Z",
"feed_type": "social_feed",
"rating_type": 1,
"feed_form_id": null,
"social_feed_type": "social",
"customer_avatar": "uploads/gx8N4Q/appsumo-reviews/appsumo-review-author-profile-YuzS-1766414944.jpeg",
"review_at": "Dec 19, 2025",
"review_url": "https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/",
"customer_designation": null,
"customer_company": "",
"product_name": "",
"social_platform": {
"id": 36,
"name": "AppSumo",
"slug": "appsumo",
"icon_url": "/assets/img/social-icons/v2/appsumo.png",
"icon_full_url": "https://feedspace-staging.s3.us-east-2.amazonaws.com/assets/img/social-icons/v2/appsumo.png"
},
"workspace_name": "Primary",
"display_review_url": "https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/",
"attachments": []
}
]
}Authorizations
HTTP Basic Authentication using API Key and Secret Key. The credentials should be Base64 encoded in the format 'api_key:secret_key'. You can obtain your API Key and Secret Key from Feedspace → Automation → API (https://app.feedspace.io/automation/api).
Body
application/json
Array of feed identifiers. Format: feed-text-item-{id}, feed-video-item-{id}, feed-audio-item-{id}, or feed-social-item-{id}. e.g. ['feed-text-item-9793', 'feed-video-item-123']
Response
200 - application/json
Selected feeds fetched successfully.
Show child attributes
Show child attributes
⌘I