---
title: "Get Node Libraries"
method: GET
path: "/workflows/v1/node-libraries"
tags: ["Node Libraries"]
---

# Get Node Libraries

`GET /workflows/v1/node-libraries`

Endpoint to retrieve all node libraries.

## Query parameters

- `size` integer — Number of items per page
- `page` integer — Page number
- `search` string, nullable — Search keywords
- `start` string, date-time, nullable — Filter by start time (ISO 8601 format)
- `end` string, date-time, nullable — Filter by end time (ISO 8601 format)
- `access_level` union — Access level filter for the node library. Use 'all' to retrieve all nodes regardless of access level.
  - 'personal' | 'team' | 'system' — Enum representing different access control levels.
  - 'all'

## Response `200`

Successful Response

- NodeLibraryListResponse — Response model for a list of node library. Contains a list of NodeLibraryModel objects.
  - `node_libraries` NodeLibraryModel[] — List of node libraries
    - `team_id` string, nullable — ID of the team that owns this edge
    - `created_by` string, nullable — ID of the user who created this edge
    - `updated_by` string, nullable — ID of the user who last updated this edge
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `_id` string
    - `node_library_config` NodeLibraryConfigOutput
      - `logical_id` string, nullable — Unique identifier for the node library
      - `name` string, nullable — Name of the Node Library
      - `description` string, nullable — Description of the node library
      - `nodes` string[], nullable — List of node IDs that are part of this library
      - `access_level` 'personal' | 'team' | 'system' — Enum representing different access control levels.
      - `access_list` string[], nullable — List of user IDs or team IDs that have access to this node library
  - `total` integer, nullable — Total number of node libraries available without pagination.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/interactly/apis/interactly-api-3.md) · [All operations](https://skmtc.net/interactly/apis/interactly-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interactly/interactly-api-3/versions/9f4e7dc7e094/schema)
