v1

latestOpenAPI 3.0.3MIT2026-07-17241338.5 KB
Resources

List resources by kind

Lists all resources of the specified kind within the organization's namespace. Defaults to 'Repository' if kind is not specified.

get/api/orgs/{org}/resources

Path parameters

orgstring required
Example:default

Organization slug

Query parameters

kindstring
Example:Repository

Kubernetes resource kind to list (e.g. Repository, AgentStack)

Response

Resource list

totalinteger

Total number of items

kindstring

Resource kind that was listed

Example response

{
  "items": [
    {
      "apiVersion": "kradle.a5c.ai/v1alpha1",
      "kind": "AgentStack",
      "metadata": {
        "name": "my-stack",
        "namespace": "kradle-org-default"
      }
    }
  ],
  "total": 5,
  "kind": "Repository"
}