Delete registry

no

Original Documentation

Documentation Index#

Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt Use this file to discover all available pages before exploring further.

This page shows how a Team admin or Registry admin can delete a registry.

  • A Team admin can delete any registry in the organization.
  • A Registry admin can delete a registry that they created.

Deleting a registry also deletes collections that belong to that registry, but does not delete artifacts linked to the registry. Such an artifact remains in the original project that the artifact was logged to.

Use the wandb API’s delete() method to delete a registry programmatically. The following example illustrates how to:

  1. Fetch the registry you want to delete with api.registry().
  2. Call the delete() method on the returned registry object to delete the registry.
    import wandb

    # Initialize the W&B API
    api = wandb.Api()

    # Fetch the registry you want to delete
    fetched_registry = api.registry("<registry_name>")

    # Deleting a registry
    fetched_registry.delete()
    ```
  <span class="tab-end"></span>

  <span class="tab-start" data-tab-title="W&B App"></span>
1. Navigate to the W\&B Registry at [https://wandb.ai/registry/](https://wandb.ai/registry/).
2. Select the registry you want to delete.
3. Click the gear icon in the upper right corner to view the registry's settings.
4. To delete the registry, click the trash can icon in the upper right corner of the settings page.
5. Confirm the registry to delete by entering its name in the modal that appears, then click **Delete**.
  <span class="tab-end"></span>
<span class="tab-group-end"></span>
Link last verified June 7, 2026. View original ↗
Source: Weights & Biases Docs
Link last verified: 2026-03-04