Feedspace Home Dashboard

What Are the Feedspace API Endpoints?

Last updated on June 15, 2026

Overview

The Feedspace REST API exposes several endpoint groups that let you programmatically read and write data in your workspace. This article summarises the main endpoint groups and the operations available in each. For the full reference with request parameters, query options, and response schemas, visit docs.feedspace.io.

Authentication

Every request to the Feedspace API must include an Authorization header containing your API Key:

Authorization: Bearer YOUR_API_KEY

To find your API Key, open your Feedspace workspace, go to Automation, and click the API tab. Keep your key private and never expose it in client-side code or public repositories.

Endpoint Groups

Reviews

The Reviews endpoints are the core of the Feedspace API. They let you retrieve, submit, and update review records in your workspace.

  • GET list of reviews: Returns a paginated list of reviews in your workspace. You can filter by form, status, rating, or date range.
  • GET single review by ID: Returns the full details of one review, including the reviewer name, rating, content, and status, identified by its unique review ID.
  • POST to submit a new review: Creates a new review record in Feedspace. Use this to programmatically submit reviews from your own application, checkout flow, or data pipeline.
  • PATCH to update review status: Updates the status of an existing review, for example to approve, reject, or archive it, without modifying any other review data.

Forms

The Forms endpoint lets you retrieve the review collection forms configured in your workspace.

  • GET list of forms: Returns all forms in your workspace, including each form’s ID, name, and settings. Use the form ID when submitting a review via the API to associate it with the correct form.

Workspaces

The Workspaces endpoint gives you access to information about the workspace associated with your API Key.

  • GET workspace info: Returns details about your workspace, such as the workspace name, plan, and configuration metadata. Useful for validating your API Key and confirming which workspace your requests are scoped to.

Full API Reference

The endpoint summaries above cover the main operations available in the Feedspace API. For the complete reference, including all query parameters, request body schemas, response formats, and error codes, see the official documentation at docs.feedspace.io.

You might also find helpful

How to Use Feedspace API

Overview Feedspace API enables you to connect your software system with Feedspace’s workflow seamlessly. With just a few steps, you can automate the process of collecting, managing, and displaying reviews or testimonials across your platforms. Why Use Feedspace API? Getting Started

How Do I Fetch Reviews Using the Feedspace API?

Overview The Feedspace REST API lets you programmatically retrieve reviews from your workspace. You can use this to display approved reviews in a custom widget on your website, sync reviews to a CRM, or build a review dashboard, all without touching the Feedspace dashboard. This article walks you through generating...

How Do I Submit a Review Using the Feedspace API?

With the Feedspace REST API, you can programmatically submit a testimonial on behalf of a customer. This is useful for automating review collection immediately after a purchase is completed, an onboarding step is finished, or any milestone event in your application. Before You Begin API access requires a Professional or...