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."
}

Body

This endpoint will generate simple description of an image.
image_url
string
This is the image url of the image you want to generate description for.
business_description
string
The description of the business that the image is associated with.

Response

description
string
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."
}