# Retrieve catalog item worksheets

## Get catalog item worksheets

<mark style="color:blue;">`GET`</mark> `https://ris.rightsline.com/v4/worksheet`

This endpoint allows you to get the catalog-item worksheets.

#### Headers

| Name           | Type   | Description             |
| -------------- | ------ | ----------------------- |
| x-api-key      | string | Your company's API key. |
| Authentication | string | Authentication token.   |

{% tabs %}
{% tab title="200 Worksheets successfully retrieved." %}

```javascript
[
    {
        "id": "0c6fe0be-a1fe-ef11-835d-065151be1e5f",
        "name": "Worksheet 1"
    },
    {
        "id": "47ac3f2a-9cfe-ef11-835d-065151be1e5f",
        "name": "Worksheet 2"
    }
]
```

{% endtab %}
{% endtabs %}

## Get catalog item worksheet by ID

<mark style="color:blue;">`GET`</mark> `https://ris.rightsline.com/v4/worksheet/:id`

This endpoint allows you to get a catalog-item worksheet by worksheet ID.

#### Path Parameters

| Name | Type   | Description          |
| ---- | ------ | -------------------- |
| id   | string | ID of the worksheet. |

#### Headers

| Name           | Type   | Description             |
| -------------- | ------ | ----------------------- |
| x-api-key      | string | Your company's API key. |
| Authentication | string | Authentication token.   |

{% tabs %}
{% tab title="200 Draft templates successfully retrieved." %}

```javascript
{
    "records": {
        "1": [
            {
                "id": 38086,
                "title": "Catalog Item 1"
            },
            {
                "id": 38085,
                "title": "Catalog Item 2"
            },
            {
                "id": 38454,
                "title": "Catalog Item 3"
            }
        ]
    },
    "createdDate": "2025-03-11T17:53:32.733Z",
    "lastUpdatedDate": "2025-03-11T17:53:32.733Z",
    "id": "0c6fe0be-a1fe-ef11-835d-065151be1e5f",
    "name": "Worksheet 1"
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api-docs.rightsline.com/entities/catalog-item/retrieve-catalog-item-worksheets.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
