For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Image AnalyzerAnalyze Images Batch
TestMu AI
StatusCommunityBlog
Image Analyzer

Analyze Images Batch

Analyze multiple images in batch against a single prompt. This endpoint: 1. Accepts multiple images and a single prompt 2. Processes images in parallel (with rate limiting) 3. Returns individual analysis results for each image Between 1 and 50 image files may be uploaded per request.

POST
/api/analyze-images-batch
Analyze Images Batch
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/analyze-images-batch" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: multipart/form-data" \
--form 'project_id=<project_id>' \
--form 'original_prompt=<original_prompt>' \
--form 'images='
{
"success": true,
"message": "<string>",
"data": {},
"error": "<string>"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

multipart/form-data
project_idstringrequired
original_promptstringrequired

The prompt used to generate all images

imagesarrayrequired

Response

application/json

Successful Response

successbooleanrequired

Whether the batch analysis was successful

messagestringrequired

Status message

dataobject

Batch analysis results

errorstring

Error message if batch analysis failed

Analyze Images Batch
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/analyze-images-batch" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: multipart/form-data" \
--form 'project_id=<project_id>' \
--form 'original_prompt=<original_prompt>' \
--form 'images='
{
"success": true,
"message": "<string>",
"data": {},
"error": "<string>"
}