Quay Repository API

Manage container image repositories including create, list, update, delete, visibility, descriptions, and metadata.

Operations 4

GET /repository List repositories #
POST /repository Create a new repository #
GET /repository/{repository} Get repository details #
DELETE /repository/{repository} Delete repository #

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/quay-repository-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

quay-repository-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quay Container Registry Build Repository API
  description: The Quay API provides programmatic access to the Quay container image registry. Developers can manage repositories, organizations, users, robot accounts, teams, builds, build triggers, tags, manifests, vulnerability scans, and access permissions. The API supports the full lifecycle of container image distribution including image push and pull workflows, automated build configuration via integrations with source code repositories, security scanning of stored images, and fine-grained access control via OAuth tokens and robot account credentials. The API is available against Quay.io hosted service and on Red Hat Quay self-hosted installations through the same /api/v1 surface.
  version: 1.0.0
  contact:
    name: Red Hat Quay Support
    url: https://access.redhat.com/products/red-hat-quay/
  termsOfService: https://quay.io/tos
servers:
- url: https://quay.io/api/v1
  description: Quay.io hosted production server
security:
- OAuth2: []
tags:
- name: Repository
  description: Manage container image repositories including create, list, update, delete, visibility, descriptions, and metadata.
paths:
  /repository:
    get:
      tags:
      - Repository
      summary: List repositories
      description: List repositories visible to the authenticated user with optional filters.
      operationId: listRepos
      parameters:
      - name: namespace
        in: query
        schema:
          type: string
      - name: public
        in: query
        schema:
          type: boolean
      - name: starred
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: Successful response
    post:
      tags:
      - Repository
      summary: Create a new repository
      operationId: createRepo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                namespace:
                  type: string
                repository:
                  type: string
                visibility:
                  type: string
                  enum:
                  - public
                  - private
                description:
                  type: string
      responses:
        '201':
          description: Repository created
  /repository/{repository}:
    get:
      tags:
      - Repository
      summary: Get repository details
      operationId: getRepo
      parameters:
      - name: repository
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
    delete:
      tags:
      - Repository
      summary: Delete repository
      operationId: deleteRepo
      parameters:
      - name: repository
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Repository deleted
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://quay.io/oauth/authorize
          tokenUrl: https://quay.io/oauth/access_token
          scopes:
            repo:read: Read repositories
            repo:write: Write repositories
            repo:admin: Administer repositories
            org:admin: Administer organizations
            user:read: Read user info
            user:admin: Administer the user
externalDocs:
  description: Quay API Explorer and Documentation
  url: https://docs.quay.io/api/