Kubeshop cluster-resources API

The cluster-resources API from Kubeshop — 1 operation(s) for cluster-resources.

Operations 1

GET /cluster-resources List cluster resources #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kubeshop-cluster-resources-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kubeshop-cluster-resources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Testkube Cluster Resources API
  description: Testkube provides a Kubernetes-native framework for test definition, execution and results
  contact:
    email: contact@testkube.io
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: 1.0.0
tags:
- name: cluster-resources
paths:
  /cluster-resources:
    get:
      tags:
      - cluster-resources
      summary: List cluster resources
      description: 'Returns every Group/Version/Kind the cluster exposes, tagged with whether

        the agent ServiceAccount has list+watch permission. Backs the UI dropdown

        for picking what resource a TestTrigger or WorkflowTrigger should watch.

        '
      operationId: listClusterResources
      parameters:
      - in: query
        name: watchable
        schema:
          type: boolean
        description: When true, drop resources the agent cannot list+watch.
      responses:
        200:
          description: successful list operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClusterResource'
        501:
          description: cluster discovery not configured on this instance
        502:
          description: cluster discovery failed
components:
  schemas:
    ClusterResource:
      description: One GVK the cluster exposes, with the agent's watch permission.
      type: object
      required:
      - version
      - kind
      - resource
      - namespaced
      - canWatch
      properties:
        group:
          type: string
          description: API group (empty for core resources like Pod, Service).
          example: argoproj.io
        version:
          type: string
          example: v1alpha1
        kind:
          type: string
          example: Rollout
        resource:
          type: string
          description: Plural resource name as used in RBAC rules.
          example: rollouts
        namespaced:
          type: boolean
          description: Cluster-scoped resources (Node, ClusterRole, ...) have this false.
        canWatch:
          type: boolean
          description: True when the agent ServiceAccount holds list+watch on this resource.
externalDocs:
  description: Find out more about Testkube
  url: https://testkube.kubeshop.io/