---
title: "List All Container Registry Repositories"
method: GET
path: "/v2/registry/{registry_name}/repositories"
tags: ["DigitalOcean-public.v2-new_Container Registry"]
deprecated: true
---

# List All Container Registry Repositories

`GET /v2/registry/{registry_name}/repositories`

> **Deprecated.**

This endpoint has been deprecated in favor of the _List All Container Registry Repositories [V2]_ endpoint.

To list all repositories in your container registry, send a GET
request to `/v2/registry/$REGISTRY_NAME/repositories`.

## Path parameters

- `registry_name` string, required

## Query parameters

- `per_page` integer
- `page` integer

## Response `200`

The response body will be a JSON object with a key of `repositories`. This will be set to an array containing objects each representing a repository.

- object
  - `repositories` Repository[]
    - `registry_name` string — The name of the container registry.
    - `name` string — The name of the repository.
    - `latest_tag` RepositoryTag
      - `registry_name` string — The name of the container registry.
      - `repository` string — The name of the repository.
      - `tag` string — The name of the tag.
      - `manifest_digest` string — The digest of the manifest associated with the tag.
      - `compressed_size_bytes` integer — The compressed size of the tag in bytes.
      - `size_bytes` integer — The uncompressed size of the tag in bytes (this size is calculated asynchronously so it may not be immediately available).
      - `updated_at` string, date-time — The time the tag was last updated.
    - `tag_count` integer — The number of tags in the repository.
  - `links` PageLinks
    - `pages` union
      - ForwardLinks
        - `last` string — URI of the last page of the results.
        - `next` string — URI of the next page of the results.
      - BackwardLinks
        - `first` string — URI of the first page of the results.
        - `prev` string — URI of the previous page of the results.
      - unknown
  - `meta` object, required — Information about the response itself.
    - `total` integer, required — Number of objects returned by the request.

## Other responses

- `401` — Authentication failed due to invalid credentials.
- `404` — The resource was not found.
- `429` — The API rate limit has been exceeded.
- `500` — There was a server error.
- `default` — There was an unexpected error.

---

[API](https://skmtc.net/digitalocean/apis/digitalocean-api.md) · [All operations](https://skmtc.net/digitalocean/apis/digitalocean-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/digitalocean/digitalocean-api/revisions/cb3bf9b21459/schema)
