How can we help you?
Browse All Categories
Explore and Learn About Feedspace Features. Below you'll find a list of help articles to guide you through each feature, organized by category.
Categories List
What Is the Feedspace REST API?
Overview The Feedspace REST API is a JSON-based HTTP API that gives developers direct, programmatic access to their Feedspace workspace. Using the API, you can submit reviews from your own application, retrieve reviews to display in a custom UI, automate review pipelines, and sync Feedspace data with external systems, all without logging in to the… Continue reading What Is the Feedspace REST API?
What Are the Feedspace API Endpoints?
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… Continue reading What Are the Feedspace API Endpoints?
What Are the Feedspace API Rate Limits?
Overview Feedspace enforces rate limits on all API requests to protect platform stability and ensure consistent performance for every user. Understanding these limits helps you build integrations that stay within the allowed thresholds and handle errors gracefully when limits are reached. Standard rate limits The standard rate limit for the Feedspace REST API is 60… Continue reading What Are the Feedspace API Rate Limits?
How Do I Test My Feedspace Webhook Integration?
Overview Before connecting your production server, you can test your Feedspace webhook integration using a free temporary URL service. This lets you inspect the exact JSON payload Feedspace sends, confirm your event selection is correct, and validate your signature verification code, all without writing a single line of server code first. What you need Steps… Continue reading How Do I Test My Feedspace Webhook Integration?
How Do I Verify Feedspace Webhook Signatures?
Overview Feedspace signs every webhook payload with a secret key so your server can verify the request is genuine. By checking the signature before processing the payload, you can confirm the request came from Feedspace and reject any spoofed or tampered requests. Step 1: Get your webhook secret Store this secret as an environment variable… Continue reading How Do I Verify Feedspace Webhook Signatures?
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. The steps below cover generating your API key and making your… Continue reading How Do I Fetch Reviews Using the Feedspace API?
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 Business plan in Feedspace. You… Continue reading How Do I Submit a Review Using the Feedspace API?
How Do I Authenticate with the Feedspace API?
The Feedspace REST API uses Bearer token authentication. Every request you send must include your API Key in the Authorization header. This article explains how to locate your key and add it to your requests. Before you begin API access is available on the Professional and Business plans. Make sure you have the necessary plan… Continue reading How Do I Authenticate with the Feedspace API?
How Do I Use Webhooks in Feedspace?
Overview Feedspace provides webhooks to notify your application about important events in real-time. With webhooks, you can automatically trigger workflows in your system whenever reviews are collected on Feedspace. Reference: Feedspace Webhook Documentation Step 1: Access the webhook tab Step 2: Add your endpoint URL Step 3: Select events to receive Click the Events button… Continue reading How Do I Use Webhooks in Feedspace?
How Do I Use the Feedspace API?
Overview The Feedspace API lets you connect your software with Feedspace programmatically. You can create, update, and retrieve reviews directly from your own application or pipeline without using the Feedspace dashboard. A common use is pulling your testimonials into your own backend, CRM, or app so they show up where your customers already are, or… Continue reading How Do I Use the Feedspace API?