curl --request GET \
--url https://api.feedspace.io/v3/pages/feeds \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"current_page": 1,
"data": [
{
"feed_identifier": "feed-text-item-9793",
"feed_type": "text_feed",
"id": 9793,
"unique_feedback_id": "YiyoZB",
"comment": "Nice product, keep going!",
"favourite": 1,
"is_locked": null,
"is_video_converted": null,
"is_audio_converted": null,
"customer_designation": null,
"created_at": "2025-04-07 06:12:05",
"feed_fields": {
"name": "Henry Ford",
"profile_pic_url": null,
"position": "Engineer",
"organization_name": null,
"consent": true
},
"text_feed": {
"rating_type": "star",
"response": "5"
}
},
{
"feed_identifier": "feed-social-item-170021",
"feed_type": "social_feed",
"id": 170021,
"unique_feedback_id": "6Fe3xF",
"comment": "It is a great feature to collect feedback with just URL.\nI am using it for collecting my clients' queries in the video form.",
"favourite": 1,
"is_locked": null,
"is_video_converted": null,
"is_audio_converted": null,
"customer_designation": null,
"feed_fields": {
"name": "bhautik_a._mangukiya",
"profile_pic_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/youtube-comments/youtube-comment-author-profile-oCKH-1744005577.jpg",
"position": "",
"organization_name": "",
"consent": null
},
"social_feed": {
"rating_type": "1",
"rating": "0.0",
"review_at": "Aug 06, 2024 13:29:48",
"review_title": "",
"social_platform": {
"icon_full_url": "https://app.feedspace.io//assets/img/social-icons/v2/youtube.png",
"review_url": "https://www.youtube.com/watch?v=KC_jGMywpmI&lc=Ugzy7TOjcWGur14AIHJ4AaABAg",
"review_type": null
}
}
}
],
"first_page_url": "https://api.feedspace.io/v3/pages/feeds?page=1",
"from": 1,
"next_page_url": null,
"path": "https://api.feedspace.io/v3/pages/feeds",
"per_page": 15,
"prev_page_url": null,
"to": 2
},
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN"
}
Get all reviews for Wall of Love pages, with filters for feed types, favourite, forms, and imported sources.
curl --request GET \
--url https://api.feedspace.io/v3/pages/feeds \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"current_page": 1,
"data": [
{
"feed_identifier": "feed-text-item-9793",
"feed_type": "text_feed",
"id": 9793,
"unique_feedback_id": "YiyoZB",
"comment": "Nice product, keep going!",
"favourite": 1,
"is_locked": null,
"is_video_converted": null,
"is_audio_converted": null,
"customer_designation": null,
"created_at": "2025-04-07 06:12:05",
"feed_fields": {
"name": "Henry Ford",
"profile_pic_url": null,
"position": "Engineer",
"organization_name": null,
"consent": true
},
"text_feed": {
"rating_type": "star",
"response": "5"
}
},
{
"feed_identifier": "feed-social-item-170021",
"feed_type": "social_feed",
"id": 170021,
"unique_feedback_id": "6Fe3xF",
"comment": "It is a great feature to collect feedback with just URL.\nI am using it for collecting my clients' queries in the video form.",
"favourite": 1,
"is_locked": null,
"is_video_converted": null,
"is_audio_converted": null,
"customer_designation": null,
"feed_fields": {
"name": "bhautik_a._mangukiya",
"profile_pic_url": "https://dm219012nbq21.cloudfront.net/uploads/zhBU6t/youtube-comments/youtube-comment-author-profile-oCKH-1744005577.jpg",
"position": "",
"organization_name": "",
"consent": null
},
"social_feed": {
"rating_type": "1",
"rating": "0.0",
"review_at": "Aug 06, 2024 13:29:48",
"review_title": "",
"social_platform": {
"icon_full_url": "https://app.feedspace.io//assets/img/social-icons/v2/youtube.png",
"review_url": "https://www.youtube.com/watch?v=KC_jGMywpmI&lc=Ugzy7TOjcWGur14AIHJ4AaABAg",
"review_type": null
}
}
}
],
"first_page_url": "https://api.feedspace.io/v3/pages/feeds?page=1",
"from": 1,
"next_page_url": null,
"path": "https://api.feedspace.io/v3/pages/feeds",
"per_page": 15,
"prev_page_url": null,
"to": 2
},
"unique_form_id": "form_gSgElcsXX8LaI6RtMA6JqlkN"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Feed type filter (e.g., text, social, etc.)
Feed type filter (e.g., text, social, etc.)
Filter for favourite reviews (1 for favourite)
Filter by feed form ID
Filter by imported-from source ID
Wall of Love reviews fetched successfully.
The response is of type object
.