Search projects
GET/api/v1/project/search
Search projects
Request
Query Parameters
The search term (matches project name or partial match)
Filter by project status (active, completed, on-hold)
Include projects not owned or associated with the user
The page number to fetch (default: 1)
Number of projects per page (default: 15)
Possible values: [product, application, lib, bundle, infra, config, config_map]
Filter by specific project types. When not provided, config and config_map types are excluded by default.
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
The data items for the current page
Unique identifier of the project
Unique slug name of the project
Human-friendly name of the project (not unique)
Possible values: [product, application, lib, bundle, infra, config, config_map]
Status of the project (active, completed, on-hold)
Label name assigned to the project
Date when the project was archived. Null means the project is active.
Possible values: [user, technician]
Application category (user or technician), only relevant for application type projects
The total number of items available
The current page number
The number of items per page
{
"data": [
{
"id": 0,
"name": "string",
"projectName": "string",
"description": "string",
"projectType": "product",
"status": "string",
"label": "string",
"archivedAt": "2026-06-22T12:47:52.349Z",
"applicationCategory": "user"
}
],
"total": 100,
"page": 1,
"perPage": 10
}