cURL
curl --request GET \
--url https://api.feedspace.io/v3/pages \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.feedspace.io/v3/pages"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.feedspace.io/v3/pages', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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.feedspace.io/v3/pages"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
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.feedspace.io/v3/pages")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/pages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"data": {
"current_page": 1,
"data": [
{
"id": 406,
"unique_page_id": "page_3quM56ynXjoHeUsRPqrBe1f9",
"slug": "klcw97GWPX",
"name": "Page",
"preview_image": "uploads/zhBU6t/promotion/174400722399rrrPd-preview.jpg",
"meta": {
"allow_custom_domain": 0
},
"view_count": 0,
"public_url": "https://www.feedspace.io/w/klcw97GWPX",
"workspace": null,
"show_switch_workspace": true,
"preview_image_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/promotion/174400722399rrrPd-preview.jpg"
},
{
"id": 405,
"unique_page_id": "page_Rf1KiPbaKNWxJMo6fm3icsxp",
"slug": "QN5pr8yne2",
"name": "My Page",
"preview_image": "uploads/zhBU6t/promotion/1744006043SlJXm2M-preview.jpg",
"meta": {
"allow_custom_domain": 0
},
"view_count": 0,
"public_url": "https://www.feedspace.io/w/QN5pr8yne2",
"workspace": null,
"show_switch_workspace": true,
"preview_image_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/promotion/1744006043SlJXm2M-preview.jpg"
}
],
"first_page_url": "https://api.feedspace.io/v3/pages?page=1",
"from": 1,
"next_page_url": null,
"path": "https://api.feedspace.io/v3/pages",
"per_page": 1000,
"prev_page_url": null,
"to": 2
},
"show_merge_wol_banner": false,
"unique_workspace": null,
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN",
"total_feeds_count": 6
}Pages
All Pages
Get all pages.
GET
/
pages
cURL
curl --request GET \
--url https://api.feedspace.io/v3/pages \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.feedspace.io/v3/pages"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.feedspace.io/v3/pages', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$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.feedspace.io/v3/pages"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
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.feedspace.io/v3/pages")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/pages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"data": {
"current_page": 1,
"data": [
{
"id": 406,
"unique_page_id": "page_3quM56ynXjoHeUsRPqrBe1f9",
"slug": "klcw97GWPX",
"name": "Page",
"preview_image": "uploads/zhBU6t/promotion/174400722399rrrPd-preview.jpg",
"meta": {
"allow_custom_domain": 0
},
"view_count": 0,
"public_url": "https://www.feedspace.io/w/klcw97GWPX",
"workspace": null,
"show_switch_workspace": true,
"preview_image_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/promotion/174400722399rrrPd-preview.jpg"
},
{
"id": 405,
"unique_page_id": "page_Rf1KiPbaKNWxJMo6fm3icsxp",
"slug": "QN5pr8yne2",
"name": "My Page",
"preview_image": "uploads/zhBU6t/promotion/1744006043SlJXm2M-preview.jpg",
"meta": {
"allow_custom_domain": 0
},
"view_count": 0,
"public_url": "https://www.feedspace.io/w/QN5pr8yne2",
"workspace": null,
"show_switch_workspace": true,
"preview_image_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/promotion/1744006043SlJXm2M-preview.jpg"
}
],
"first_page_url": "https://api.feedspace.io/v3/pages?page=1",
"from": 1,
"next_page_url": null,
"path": "https://api.feedspace.io/v3/pages",
"per_page": 1000,
"prev_page_url": null,
"to": 2
},
"show_merge_wol_banner": false,
"unique_workspace": null,
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN",
"total_feeds_count": 6
}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).
⌘I