Extract text from images and convert to markdown format using AI vision models
stream· Stream result
Quick start
Call this tool from your code in three languages.
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/ai-image-to-markdown' \
-F 'file=@/path/to/imageFile.ext'# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-image-to-markdown' \
-F 'imageFile=/path/to/file.ext'
Send a POST request with your inputs as JSON. File parameters require a separate upload first.
Endpoint
HTTP
POST https://api.elysiatools.com/en/api/tools/ai-image-to-markdown
Parameters
Name
Type
Required
Description
imageFile
fileupload required
Yes
Supports JPG, PNG, WebP and other common image formats
File-type parameters must be uploaded first via POST /upload/ai-image-to-markdown, then the returned filePath is passed to the corresponding file field.