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 AnalyzerGet Image Analysis History
TestMu AI
StatusCommunityBlog
Image Analyzer

Get Image Analysis History

Get image analysis history for a project. Returns the project's image analysis records, newest first.

GET
/api/image-analysis/{project_id}
Get Image Analysis History
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/image-analysis/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"analyses": [
{
"id": "<string>",
"image_name": "<string>",
"image_storage_url": "<string>",
"original_prompt": "<string>",
"analysis_status": "<string>",
"analysis_result": {},
"quality_score": 123,
"analysis_error": "<string>",
"tags": [
"<string>"
],
"bookmarked_by": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"total": 123
}
}

Authorizations

Authorizationstringheaderrequired

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

Path Parameters

project_idstringrequired

Response

application/json

Image analyses for the project, newest first, with presigned download URLs (2h expiry) for stored images

successbooleanrequired

Whether the lookup succeeded

messagestringrequired

Outcome message

dataobjectrequired

History payload for a project.

data.analysesobject[]
data.totalnumber
Get Image Analysis History
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/image-analysis/{project_id}" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"analyses": [
{
"id": "<string>",
"image_name": "<string>",
"image_storage_url": "<string>",
"original_prompt": "<string>",
"analysis_status": "<string>",
"analysis_result": {},
"quality_score": 123,
"analysis_error": "<string>",
"tags": [
"<string>"
],
"bookmarked_by": [
"<string>"
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"total": 123
}
}