Projects
List workspace projects
Returns projects in the requested workspace that are accessible to the authenticated public API key, ordered by recent activity.
get/projects
Query parameters
limitinteger
Maximum number of results to return
Maximum number of results to return
cursorstring
Opaque cursor for fetching the next page
Example:eyJvZmZzZXQiOjIwfQ
Opaque cursor for fetching the next page
querystring
Search query
Example:logo
Search query
workspace_idstring required
Workspace identifier
Example:ws_abc123
Workspace identifier
Response
Projects returned.
Example response
{
"projects": [
{
"project_id": "prj_abc123",
"name": "Spring Campaign",
"workspace_id": "ws_abc123",
"origin": "api"
}
],
"meta": {
"next_cursor": "eyJvZmZzZXQiOjIwfQ"
}
}