# get

## HTTP Request

```http
GET /notebooks/:notebookReference
```

## Path parameters

| Parameter         |                                                                                                                                              |
| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| notebookReference | A qualified reference to the notebook. See [referencing resources](https://docs.redivis.com/api/referencing-resources) for more information. |

{% hint style="info" %}
This endpoint extends the [general API structure](https://docs.redivis.com/api/rest-api/general-structure).
{% endhint %}

## Authorization

Overview access to the transform is required. If the transform is not public, your access token must have one of the following scopes:

* workflow\.read

[Learn more about authorization.](https://docs.redivis.com/api/rest-api/authorization)

## Request body

The request body must be empty.

## Response body

Returns a JSON representation of a [notebook resource](https://docs.redivis.com/api/resource-definitions/notebook).

## Examples

{% tabs %}
{% tab title="curl" %}

```bash
# Get the notebook at https://redivis.com/workflows/x7kh-5pvd4mbf1/notebooks/2f2v-85czf33ag
curl -H "Authorization: Bearer $REDIVIS_ACCESS_TOKEN" \
"https://redivis.com/api/v1/notebooks/imathews.example_worfklow_climate_analysis:x7kh.Visualize_precipitation_trends:2f2v"
```

{% endtab %}
{% endtabs %}
