---
title: "List Registries"
method: GET
path: "/v2/registry"
tags: ["registry"]
---

# List Registries

`GET /v2/registry`

List registries visible to the caller, with search, ownership, and sort filters.

## Query parameters

- `limit` integer
- `offset` integer
- `search` string, nullable — ILIKE-match on name
- `public_only` boolean — Only public registries (Explore tab)
- `owner_only` boolean — Only registries owned by the caller's membership; ignored when public_only=True
- `project_id` string, uuid, nullable — Only registries contained by this Project; omitted lists every Project
- `sort_by` 'starred' | 'date' | 'name' | 'stars' — Sort order: starred (caller's starred first), date (updated_at DESC), name (A-Z), stars (star_count DESC)

## Response `200`

Successful Response

- PaginatedResponseRegistryDetailResponse
  - `items` RegistryDetailResponse[], required
    - `id` string, uuid, required
    - `name` string, required
    - `registry_type` string, required
    - `project_id` string, uuid, nullable, required
    - `public` boolean, required
    - `description` string, nullable
    - `latest_build_id` string, uuid, nullable
    - `github_url` string, nullable
    - `branch` string, nullable
    - `entry_folder` string, nullable
    - `build_args` object, nullable
    - `instance_config` object
    - `star_count` integer
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `latest_build` LatestBuildSummary — Projection of `builds` returned alongside a registry.
      - `id` string, uuid, required
      - `status` string, required
      - `sdk_generation` string, required
      - `version` integer, nullable
      - `manifest` object, nullable
      - `lock` object, nullable
    - `is_starred` boolean
    - `is_owner` boolean
    - `can_edit` boolean
    - `owner_name` string, nullable
    - `owner_avatar_url` string, nullable
    - `team_name` string, nullable
    - `scenario_count` integer
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required

## Other responses

- `400` — Invalid or malformed request
- `401` — Missing or invalid credentials
- `403` — Caller may not access this resource
- `404` — Referenced entity does not exist
- `409` — Resource already exists
- `422` — Validation Error

---

[API](https://skmtc.dev/hud/apis/hud-platform.md) · [All operations](https://skmtc.dev/hud/apis/hud-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hud/hud-platform/revisions/58558fc733d9/schema)
