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'
{
  "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"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.feedspace.io/llms.txt

Use this file to discover all available pages before exploring further.

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)