Projects resource provides methods to retrieve and list projects.
Methods
list
List all projects with pagination support.Maximum number of projects to return per page
Pagination cursor for fetching the next page of results
A paginated list of projects. Use
.items to access the project list, .next_cursor for pagination, and .has_more to check if more results exist.Example
get
Retrieve a specific project by its UID.The unique identifier of the project
The project object containing uid, name, status, and timestamps.
Example
Async Usage
All methods are available in async form viaclient.async_projects:
Response Types
Project
Unique identifier for the project
Human-readable name of the project
Current status of the project (e.g., “active”, “completed”, “archived”)
Timestamp when the project was created
Timestamp when the project was last updated
CursorPage
List of items in the current page
Cursor for fetching the next page (None if no more pages)
Cursor for fetching the previous page
Property indicating if more results are available