Body
This endpoint will generate simple description of an image.
This is the image url of the image you want to generate description for.
The description of the business that the image is associated with.
Response
A brief description of the image.
curl -X POST \
<BASE_URL>/simple-image-description \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"image_url": "https://example-image-url.com",
"business_description": "A restaurant serving traditional cuisine"
}'
{
"description": "This is the description of the image."
}