# Using image URL
curl -X POST https://api.viscribe.ai/v1/images/describe \
-H "VISCRIBE-APIKEY: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/product.jpg",
"instruction": "Generate an SEO-optimized description with 5 relevant tags",
"generate_tags": true
}'
# Or using base64 encoded image
curl -X POST https://api.viscribe.ai/v1/images/describe \
-H "VISCRIBE-APIKEY: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_base64": "data:image/jpeg;base64,/9j/4AAQSkZJRg...",
"instruction": "Generate an SEO-optimized description with 5 relevant tags",
"generate_tags": true
}'