POST
/
tools
/
review-to-image
curl --request POST \
  --url https://api.hobbo.ai/tools/review-to-image \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "user_name": "<string>",
  "user_job_title": "<string>",
  "user_company": "<string>",
  "text_review": "<string>",
  "star_rating": 123,
  "customer_brand_name": "<string>",
  "customer_brand_website": "<string>",
  "customer_brand_socialmedia_handle": "<string>",
  "customer_brand_background_photos": [
    null
  ]
}'
{
  "status": 200,
  "data": "<base64 encoded image data>",
  "success": true,
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Review text generation parameters

The body is of type object.

Response

200
application/json

Review image generated successfully

The response is of type object.