Skip to main content

Search Projects

GET /public/action/projects/search

Lists / searches active projects.

Authentication: X-API-KEY header (see Authentication).

Query parameters

ParameterTypeRequiredDescription
idstringNoExact project id. When provided, returns just that project (ignores query).
querystringNoAn exact client name. Returns that client's projects. Omit to list all projects in the workspace.
note

query here is not free text — it is matched to a client by name. If no client with that exact name exists, the endpoint returns 404 Not Found.

Request

curl -X GET https://api.withmoxie.com/public/action/projects/search?query=VALUE \
-H "X-API-KEY: your_api_key_here"

Response

Returns an array of ProjectMini objects.

[
{
"id": "66b0f4c3c3a9e40012ab6611",
"accountId": 10016,
"clientId": "66b0f2a1c3a9e40012ab34cd",
"name": "Website Redesign",
"active": true,
"startDate": "2026-07-15",
"dueDate": "2026-10-01",
"dateCreated": "2026-07-01T09:00:00Z",
"client": { "id": "66b0f2a1c3a9e40012ab34cd", "name": "Acme Kft." },
"hexColor": "#5C00E2",
"portalAccess": "FULL",
"showTimeWorkedInPortal": true,
"customValues": []
}
]