Skip to main content
POST
/
imports
/
self-imports
/
image-to-text-review
cURL
curl --request POST \
  --url https://api.feedspace.io/v3/imports/self-imports/image-to-text-review \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: multipart/form-data' \
  --form images[]='@example-file'
import requests

url = "https://api.feedspace.io/v3/imports/self-imports/image-to-text-review"

files = { "images[]": ("example-file", open("example-file", "rb")) }
headers = {"Authorization": "Basic <encoded-value>"}

response = requests.post(url, files=files, headers=headers)

print(response.text)
const form = new FormData();
form.append('images[]', '<string>');

const options = {method: 'POST', headers: {Authorization: 'Basic <encoded-value>'}};

options.body = form;

fetch('https://api.feedspace.io/v3/imports/self-imports/image-to-text-review', 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/imports/self-imports/image-to-text-review",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"images[]\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--",
  CURLOPT_HTTPHEADER => [
    "Authorization: Basic <encoded-value>",
    "Content-Type: multipart/form-data"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.feedspace.io/v3/imports/self-imports/image-to-text-review"

	payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"images[]\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")

	req, _ := http.NewRequest("POST", url, payload)

	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.post("https://api.feedspace.io/v3/imports/self-imports/image-to-text-review")
  .header("Authorization", "Basic <encoded-value>")
  .body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"images[]\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.feedspace.io/v3/imports/self-imports/image-to-text-review")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"images[]\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n<string>\r\n-----011000010111000001101001--"

response = http.request(request)
puts response.read_body
{ "data": { "source_id": 123, "reviews": [ { "id": 456, "user_id": 789, "social_platform_id": null, "review": "Great product! Highly recommend it.", "review_title": "Excellent Service", "rating": 5, "customer_name": "John Doe", "review_at": "2024-01-01T00:00:00.000000Z" } ] } }

Authorizations

Authorization
string
header
required

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).

Body

multipart/form-data

Request body for importing reviews from a screenshot image. Upload a screenshot of your review to automatically import it.

images[]
file
required

Image file (required, exactly 1 image). Allowed formats: jpeg, png, jpg, gif, svg, webp, bmp, avif. Max size: 15 MB

Response

Reviews imported successfully. May include warnings if some images failed processing.

data
object
warnings
object

Warnings if some images failed (only present if errors occurred)