## List `ProjectListPage projects().list(ProjectListParamsparams = ProjectListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **get** `/v0/projects` List projects in an organization, from oldest to newest. ### Parameters - `ProjectListParams params` - `Optional cursor` Pagination cursor from a previous response - `Optional limit` Maximum number of projects to return, defaults to 10 (maximum: 100). - `Optional org` ### Returns - `class Project:` A project is a collection of SDKs generated from the same set of config files. - `String configRepo` - `Optional displayName` - `Object object_` - `PROJECT("project")` - `String org` - `String slug` - `List targets` - `NODE("node")` - `TYPESCRIPT("typescript")` - `PYTHON("python")` - `GO("go")` - `JAVA("java")` - `KOTLIN("kotlin")` - `RUBY("ruby")` - `TERRAFORM("terraform")` - `CLI("cli")` - `PHP("php")` - `CSHARP("csharp")` - `SQL("sql")` - `OPENAPI("openapi")` ### Example ```java package com.stainless.api.example; import com.stainless.api.client.StainlessClient; import com.stainless.api.client.okhttp.StainlessOkHttpClient; import com.stainless.api.models.projects.ProjectListPage; import com.stainless.api.models.projects.ProjectListParams; public final class Main { private Main() {} public static void main(String[] args) { StainlessClient client = StainlessOkHttpClient.fromEnv(); ProjectListPage page = client.projects().list(); } } ```