# pw marketplace get

> Source: https://parallelworks.com/docs/cli/pw/marketplace/get

## pw marketplace get

Show a marketplace item

```
pw marketplace get <slug> [flags]
```

### Examples

```
  # Show item details
  pw marketplace get my-workflow
  
  # Output as JSON
  pw marketplace get -o json my-workflow
  
  # Dump the workflow YAML of the latest version
  pw marketplace get --yaml my-workflow
  
  # Dump the markdown readme of a specific version
  pw marketplace get --markdown --version v1.0.0 my-workflow
```

### Options

```
  -h, --help             help for get
      --markdown         Print the markdown readme
  -o, --output string    Output format (table, json, yaml)
      --version string   Version to use with --yaml/--markdown (default "latest")
      --yaml             Print the workflow YAML definition
```

### Options inherited from parent commands

```
      --context string         The context to use. Overrides PW_CONTEXT environment variable and current context from config.
      --platform-host string   The Parallel Works ACTIVATE platform host to use. Will override any other platform host settings.
  -v, --verbose                Enable verbose logging
```

### SEE ALSO

* [pw marketplace](/docs/cli/pw/marketplace)	 - Manage marketplace items
