Documentation Index
Fetch the complete documentation index at: https://api-docs.nunu.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authentication: Any authenticated API key
Retrieve a paginated list of test folders for your project. Each item includes
the resolved path and parent_path strings, so callers don’t need to deal
with folder UUIDs directly. Pagination is over the alphabetized full list.
These folder paths are the same strings accepted by folder_path in
List Tests,
Create Test, and
Update Test.
Query Parameters
Response
Array of test folder objects
Pagination metadata (page, page_size, total_count, total_pages)
TestFolder Object
Folder name (just the leaf segment, not the full path)
Resolved folder path (e.g. "regression/smoke")
Resolved parent path, or null for top-level folders
Parent folder UUID, or null for top-level folders
Optional folder description
Tags assigned to the folder
ISO 8601 timestamp when the folder was created
ISO 8601 timestamp when the folder was last modified
Display name of the folder creator
Display name of the most recent editor
curl -X GET "https://nunu.ai/api/v1/test-folders?page=0&page_size=25" \
-H "X-Api-Key: YOUR_API_TOKEN"
{
"data": [
{
"id": "f01a3b1c-9d2e-4f05-8c7a-1a2b3c4d5e6f",
"name": "smoke",
"path": "regression/smoke",
"parent_path": "regression",
"parent_folder_id": "e10b2c3d-4e5f-6789-abcd-ef0123456789",
"description": "Critical-path smoke tests",
"tags": ["nightly"],
"created_at": "2026-03-01T10:00:00.000000+00:00",
"modified_at": "2026-03-15T14:30:00.000000+00:00",
"created_by_name": "Test Owner",
"modified_by_name": "Test Owner"
}
],
"pagination": {
"page": 0,
"page_size": 25,
"total_count": 1,
"total_pages": 1
}
}
API key for authentication
Required range: 1 <= x <= 100