v1
latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KBTasks
Search Project Tasks
Search tasks within a single project. Same query semantics as GET /tasks/search; limit must be between 1 and 100.
get/projects/{project_id}/tasks/search
Path parameters
project_idstring required
Example:ev:1234567789001
Project ID
Query parameters
querystring
Example:Managem
Search query
limitinteger
Example:10
Max number of search results
searchInClosedboolean
Should we search in closed/completed tasks?
searchInUnscheduledboolean
Return unscheduled tasks (not in any section). Works without a query.
Response
OK
Example response
[
{
"id": "ev:9876543210",
"name": "Task Name",
"projects": [
"ev:1234567890"
],
"section": 1234,
"labels": [
"high",
"bug"
],
"position": 1,
"dueAt": "2018-03-05 16:00:00",
"status": "open",
"time": {
"total": 7200,
"users": {
"1304": 3600,
"1543": 3600
}
},
"estimate": {
"total": 7200,
"type": "overall",
"users": {
"1304": 3600,
"1543": 3600
}
},
"attributes": {
"Client": "Everhour",
"Priority": "high"
},
"metrics": {
"efforts": 42,
"expenses": 199
}
}
]