# Jobs.Get

```go
func (*JobClient) Get(
    ctx context.Context,
    jobID uuid.UUID,
) (*workflows.Job, error)
```

Get a job by its id.

## Parameters

**jobID**

`uuid.UUID`

The id of the job

## Returns

A job object.

```go title="Go"
job, err := client.Jobs.Get(ctx,
    uuid.MustParse("0195c87a-49f6-5ffa-e3cb-92215d057ea6"),
)
```

## Errors

**not\_found**

`job not found`

The specified job does not exist.
