Batch Requests
To make a batch request, append the product features in an array
Request Object Format
Example Request
curl --location --request POST 'https://api.frenzy.ai/imageUrlTextProcess' \
--header 'Content-Type: application/json' \
--header 'X-Frenzy-Authorization: API_KEY' \
--data-raw '[
{
"id": "1",
"imageurl": "http://image_url_1",
"text": "product description of the image_1"
},
{
"id": "2",
"imageurl": "http://image_url_2",
"text": "product description of the image_2"
}
]'Last updated