---
title: Linked Resources
url: https://docs.vultr.com/products/compute/kubernetes/management/linked-resources
description: A feature that allows you to view and manage resources connected to your current Vultr product or service.
publish_date: 2024-09-23T20:20:44.704468Z
last_updated: 2026-05-26T18:59:35.009850Z
---

# How to Retrieve Linked Resources for Vultr Kubernetes Engine Cluster

Linked Resources in a Vultr Kubernetes Engine (VKE) cluster include critical components like load balancers and block storage, which provide network traffic management and persistent storage solutions for your Kubernetes environment. Accessing these linked resources is important for managing and optimizing your cluster's performance and storage.

Follow this guide to retrieve the linked resources associated with your VKE cluster from your Vultr account using the Vultr Console or API.

=== "Vultr Console"

    1. Navigate to **Products** and click **Kubernetes**.

    1. Click your target VKE cluster to open its management page.

    1. Click **Linked Resources**.

    1. You will be able to view any linked **Block Storages** and **Load Balancer** to your VKE cluster.

=== "Vultr API"

    1. Send a `GET` request to the [**List Kubernetes Clusters** endpoint](https://www.vultr.com/api/#tag/kubernetes/operation/list-kubernetes-clusters) and note the target VKE cluster's ID.

        ```console
        $ curl -X GET "https://api.vultr.com/v2/kubernetes/clusters" \
            -H "Authorization: Bearer ${VULTR_API_KEY}" \
            -H "Content-Type: application/json"
        ```

    1. Send a `GET` request to the [**Kubernetes Resources** endpoint](https://www.vultr.com/api/#tag/kubernetes/operation/get-kubernetes-resources) to list all the attached resources.

        ```console
        $ curl -X GET "https://api.vultr.com/v2/kubernetes/clusters/<cluster-id>/resources" \
            -H "Authorization: Bearer ${VULTR_API_KEY}" \
            -H "Content-Type: application/json"
        ```