## List `projects.list(**kwargs) -> Page` **get** `/v0/projects` List projects in an organization, from oldest to newest. ### Parameters - `cursor: String` Pagination cursor from a previous response - `limit: Float` Maximum number of projects to return, defaults to 10 (maximum: 100). - `org: String` ### Returns - `class Project` A project is a collection of SDKs generated from the same set of config files. - `config_repo: String` - `display_name: String` - `object: :project` - `:project` - `org: String` - `slug: String` - `targets: Array[Target]` - `:node` - `:typescript` - `:python` - `:go` - `:java` - `:kotlin` - `:ruby` - `:terraform` - `:cli` - `:php` - `:csharp` - `:sql` - `:openapi` ### Example ```ruby require "stainless_v0" stainless = StainlessV0::Client.new( api_key: "My API Key", environment: "staging" # defaults to "production" ) page = stainless.projects.list puts(page) ```