POST /v2/cv/images
instead. This endpoint uploads an image for reverse image search. The image must be in JPEG or PNG format. To get the search results, pass the ID that this endpoint returns to the GET /v2/images/{id}/similar
endpoint.curl --location --request POST '/v2/images' \
--header 'User-Agent: ShutterstockWorkspace/1.1.30' \
--header 'Content-Type: text/plain' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"base64_image": "<string>"
}'
{
"$ref": "#/components/schemas/ImageCreateResponse/example"
}