## List **get** `/v0/projects` List projects in an organization, from oldest to newest. ### Query Parameters - `cursor: optional string` Pagination cursor from a previous response - `limit: optional number` Maximum number of projects to return, defaults to 10 (maximum: 100). - `org: optional string` ### Returns - `data: array of Project` - `config_repo: string` - `display_name: string` - `object: "project"` - `"project"` - `org: string` - `slug: string` - `targets: array of Target` - `"node"` - `"typescript"` - `"python"` - `"go"` - `"java"` - `"kotlin"` - `"ruby"` - `"terraform"` - `"cli"` - `"php"` - `"csharp"` - `"sql"` - `"openapi"` - `has_more: boolean` - `next_cursor: optional string` ### Example ```http curl https://api.stainless.com/v0/projects \ -H "Authorization: Bearer $STAINLESS_API_KEY" ```