Get all review forms
curl --request GET \
--url https://api.feedspace.io/v3/forms \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.feedspace.io/v3/forms"
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/forms', 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/forms",
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/forms"
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/forms")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/forms")
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": 251,
"project_id": 354,
"unique_form_id": "form_f5Uc9agvcXRKgPdDrVCIZYc1",
"name": "Testimonial Collection Form",
"page_image": "uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png",
"page_image_url": "https://feedspace-staging.s3.us-east-2.amazonaws.com/uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png",
"public_url": "https://feedspace.io/u/E31TFy1/testapp3",
"public_display_url": "feedspace.io/u/E31TFy1/testapp3",
"updated_at": "2026-01-01 11:29:00",
"hits": "35",
"reviews": "14",
"conversion_rate": 40,
"is_paused": 0,
"form_kind": "legacy",
"updated_by": {
"id": 282,
"name": "Nikhil Radadiya"
}
}
],
"first_page_url": "http://api.feedspace.io/v3/forms?page=1",
"from": 1,
"next_page_url": null,
"path": "http://api.feedspace.io/v3/forms",
"per_page": 1000,
"prev_page_url": null,
"to": 5
},
"can": {
"pause": true
}
}Review Forms
Get All Review Form
Returns a list of all review forms.
GET
/
forms
Get all review forms
curl --request GET \
--url https://api.feedspace.io/v3/forms \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.feedspace.io/v3/forms"
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/forms', 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/forms",
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/forms"
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/forms")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.feedspace.io/v3/forms")
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": 251,
"project_id": 354,
"unique_form_id": "form_f5Uc9agvcXRKgPdDrVCIZYc1",
"name": "Testimonial Collection Form",
"page_image": "uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png",
"page_image_url": "https://feedspace-staging.s3.us-east-2.amazonaws.com/uploads/gx8N4Q/allinone-feed-form/1766392380_cloned_1766055929FS-Shopify_App-Logo.png",
"public_url": "https://feedspace.io/u/E31TFy1/testapp3",
"public_display_url": "feedspace.io/u/E31TFy1/testapp3",
"updated_at": "2026-01-01 11:29:00",
"hits": "35",
"reviews": "14",
"conversion_rate": 40,
"is_paused": 0,
"form_kind": "legacy",
"updated_by": {
"id": 282,
"name": "Nikhil Radadiya"
}
}
],
"first_page_url": "http://api.feedspace.io/v3/forms?page=1",
"from": 1,
"next_page_url": null,
"path": "http://api.feedspace.io/v3/forms",
"per_page": 1000,
"prev_page_url": null,
"to": 5
},
"can": {
"pause": true
}
}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