## List `$ stl projects list` **get** `/v0/projects` List projects in an organization, from oldest to newest. ### 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 - `unnamed_schema_0: object { data, has_more, next_cursor }` - `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 ```cli stl projects list ```