Projects

List projects

Returns projects, most recently updated first. By default only API-created projects are included; pass includeUiProjects=true to also include dashboard-created projects. Use selfOnly=true to restrict results to the calling API key's user; otherwise all matching projects for the team are returned. Cursor-paginated; see the Pagination guide.

get/v1/projects

Query parameters

limitinteger

Maximum number of items to return in the page. Defaults to 50; capped at 200. See Pagination.

cursorstring

Opaque pagination cursor returned as nextCursor by the previous page. Omit on the first request. Cursors are tied to the endpoint that produced them and must be passed unmodified. See Pagination.

selfOnlyboolean

When true, returns only items created by the API key's owner. When false (default), returns all items accessible to the team.

includeUiProjectsboolean

When true, includes dashboard-created projects in addition to API-created projects. When false (default), returns only API-created projects.

Response

Paginated list of projects.

hasMoreboolean required

When true, there are more projects available. Pass nextCursor as the cursor query param to fetch the next page.

nextCursorstring nullable required

Opaque cursor to fetch the next page. null when hasMore is false.

Changes