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

# JobClient.find

```python theme={"system"}
def JobClient.find(job_or_id: Job | str) -> Job
```

Get a job by its id. Can also be an existing job object, in which case this method acts as a refresh operation to fetch the latest job details.

## Parameters

<ParamField path="job_or_id" type="Job | str">
  The job or job id to get.
</ParamField>

## Returns

A job object.

<RequestExample>
  ```python Python theme={"system"}
  job = job_client.find("0195c87a-49f6-5ffa-e3cb-92215d057ea6")
  ```
</RequestExample>
