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
ProjectsGet Agent Projects
TestMu AI
StatusCommunityBlog
Projects

Get Agent Projects

Get all agent projects for the current organization.

GET
/api/projects
Get Agent Projects
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "",
"data": [
{
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z",
"workflows": [
{}
]
}
]
}

Authorizations

Authorizationstringheaderrequired

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

Query Parameters

pageinteger
per_pageinteger

Response

application/json

Successful Response

successboolean

Whether the operation was successful

messagestring

Response message

dataobject[]

List of agent projects with workflow IDs

data.project_idstring
Example: "<string>"
data.namestring
Example: "<string>"
data.descriptionstring
Example: "<string>"
data.agent_typestring
Example: "chat"
data.created_atstring
Example: "2018-03-15T12:00:00Z"
data.updated_atstring
Example: "2018-03-15T12:00:00Z"
data.workflowsobject[]
Get Agent Projects
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "",
"data": [
{
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z",
"workflows": [
{}
]
}
]
}