## List projects `$client->projects->list(?string cursor, ?float limit, ?string org): Page` **get** `/v0/projects` List projects in an organization, from oldest to newest. ### Parameters - `cursor?:optional string` Pagination cursor from a previous response - `limit?:optional float` Maximum number of projects to return, defaults to 10 (maximum: 100). - `org?:optional string` ### Returns - `Project` - `string configRepo` - `?string displayName` - `Object_ object` - `string org` - `string slug` - `list targets` ### Example ```php projects->list(cursor: 'cursor', limit: 1, org: 'org'); var_dump($page); ``` #### Response ```json { "data": [ { "config_repo": "config_repo", "display_name": "display_name", "object": "project", "org": "org", "slug": "slug", "targets": [ "node" ] } ], "has_more": true, "next_cursor": "next_cursor" } ```