## Retrieve `projects.retrieve(**kwargs) -> Project` **get** `/v0/projects/{project}` Retrieve a project by name. ### Parameters - `project: 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" ) project = stainless.projects.retrieve(project: "project") puts(project) ```