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
PlatformHealth Check
TestMu AI
StatusCommunityBlog
Platform

Health Check

Health Check

GET
/api/health
Health Check
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/health" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"status": "<string>",
"initialized": true,
"version": "<string>",
"supported_file_types": [
"<string>"
],
"max_file_size_mb": 123
}
}

Response

application/json

Service liveness, initialization state and upload limits

successbooleanrequired

Whether the operation was successful

messagestringrequired

Response message

dataobjectrequired
data.statusstring
Example: "<string>"
data.initializedboolean
Example: true
data.versionstring
Example: "<string>"
data.supported_file_typesstring[]
Example:
["<string>"]
data.max_file_size_mbnumber
Health Check
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/health" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"status": "<string>",
"initialized": true,
"version": "<string>",
"supported_file_types": [
"<string>"
],
"max_file_size_mb": 123
}
}