> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baseten.co/llms.txt
> Use this file to discover all available pages before exploring further.

# baseten train project

> Manage training projects

## list

```sh theme={"system"}
baseten train project list [OPTIONS]
```

List the training projects your teams can access, newest first.

### Options

<ParamField body="-q, --jq" type="TEXT">
  Filter JSON output with a jq expression; implies --output json (or jsonl for streamed commands)
</ParamField>

<ParamField body="-o, --output" type="TEXT" default="text">
  Output format

  One of: `text`, `json`, `jsonl`, `none`
</ParamField>

<ParamField body="--profile" type="TEXT">
  Use a specific stored profile for this command, overriding BASETEN\_PROFILE and the current profile
</ParamField>

<ParamField body="-v, --verbose" type="BOOL">
  Enable verbose logging
</ParamField>

### Examples

List your training projects

```sh theme={"system"}
baseten train project list
```

### Filter output with `--jq`

Print just the project names

```sh theme={"system"}
baseten train project list --jq '.training_projects[].name'
```

### Output

**Text mode (`--output text`):** Table with columns: ID, NAME, TEAM, LATEST JOB, LATEST STATUS, CREATED. When there are no projects, prints "No training projects found." to stderr.

**JSON mode (`--output json`):** payload type `managementapi.ListTrainingProjectsResponse`.
