API Documentation
Workspaces/Projects
Audio Reviews
Video Reviews
Text Reviews
Wall of Love (Page)
Import Reviews
Text Reviews
Single Text Review
Get details of a specific text feed based on text feed ID.
GET
/
feeds
/
text
/
{text_feed_id}
cURL
Copy
Ask AI
curl --request GET \
--url https://api.feedspace.io/v3/feeds/text/{text_feed_id} \
--header 'Authorization: Bearer <token>' \
--header 'fs-workspace-id: <fs-workspace-id>'
Copy
Ask AI
{
"data": {
"id": 9793,
"unique_feedback_id": "YiyoZB",
"feed_form": {
"name": "New Review Form",
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN",
"public_url": "https://www.feedspace.io/u/4en9smV"
},
"comment": "Nice product, keep going!",
"public_url": "https://www.feedspace.io/f/YiyoZB",
"favourite": true,
"rating_type": "star",
"response": "5",
"created_at": "2025-04-07T06:12:05.000000Z",
"feed_fields": {
"name": "Henry Ford",
"profile_pic_url": null,
"position": "Engineer",
"organization_name": null,
"consent": null
},
"question_answers": [
{
"feed_form_question_id": 30081,
"question_type": 1,
"question_text": "name",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "Henry Ford",
"placeholder": "Name"
},
{
"feed_form_question_id": 30082,
"question_type": 1,
"question_text": "email",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "",
"placeholder": "Email"
},
{
"feed_form_question_id": 30084,
"question_type": 1,
"question_text": "position",
"default_value": "",
"question_label": "Job Role",
"mandatory": 0,
"answer": "Engineer",
"placeholder": "Job Role"
},
{
"feed_form_question_id": 30085,
"question_type": 1,
"question_text": "organization_name",
"default_value": "",
"question_label": "Company Name",
"mandatory": 0,
"answer": "",
"placeholder": "Company Name"
},
{
"feed_form_question_id": 30086,
"question_type": 1,
"question_text": "contact_number",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "",
"placeholder": "Contact Number"
},
{
"feed_form_question_id": 30083,
"question_type": 4,
"question_text": "consent",
"default_value": "",
"question_label": "I hereby grant permission to share this review with others.",
"mandatory": 0,
"answer": "1",
"placeholder": "Consent"
}
],
"extra_details": null
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Workspace unique ID
Path Parameters
Text feed ID
Response
200 - application/json
Text review details fetched successfully.
The response is of type object
.
cURL
Copy
Ask AI
curl --request GET \
--url https://api.feedspace.io/v3/feeds/text/{text_feed_id} \
--header 'Authorization: Bearer <token>' \
--header 'fs-workspace-id: <fs-workspace-id>'
Copy
Ask AI
{
"data": {
"id": 9793,
"unique_feedback_id": "YiyoZB",
"feed_form": {
"name": "New Review Form",
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN",
"public_url": "https://www.feedspace.io/u/4en9smV"
},
"comment": "Nice product, keep going!",
"public_url": "https://www.feedspace.io/f/YiyoZB",
"favourite": true,
"rating_type": "star",
"response": "5",
"created_at": "2025-04-07T06:12:05.000000Z",
"feed_fields": {
"name": "Henry Ford",
"profile_pic_url": null,
"position": "Engineer",
"organization_name": null,
"consent": null
},
"question_answers": [
{
"feed_form_question_id": 30081,
"question_type": 1,
"question_text": "name",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "Henry Ford",
"placeholder": "Name"
},
{
"feed_form_question_id": 30082,
"question_type": 1,
"question_text": "email",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "",
"placeholder": "Email"
},
{
"feed_form_question_id": 30084,
"question_type": 1,
"question_text": "position",
"default_value": "",
"question_label": "Job Role",
"mandatory": 0,
"answer": "Engineer",
"placeholder": "Job Role"
},
{
"feed_form_question_id": 30085,
"question_type": 1,
"question_text": "organization_name",
"default_value": "",
"question_label": "Company Name",
"mandatory": 0,
"answer": "",
"placeholder": "Company Name"
},
{
"feed_form_question_id": 30086,
"question_type": 1,
"question_text": "contact_number",
"default_value": "",
"question_label": "",
"mandatory": 0,
"answer": "",
"placeholder": "Contact Number"
},
{
"feed_form_question_id": 30083,
"question_type": 4,
"question_text": "consent",
"default_value": "",
"question_label": "I hereby grant permission to share this review with others.",
"mandatory": 0,
"answer": "1",
"placeholder": "Consent"
}
],
"extra_details": null
}
}
Assistant
Responses are generated using AI and may contain mistakes.