> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cybedefend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List DockerHub images

> Lists all Docker images (repositories) available in the DockerHub namespace using the specified credentials



## OpenAPI

````yaml get /integrations/dockerhub/container-registry/project/{projectId}/images
openapi: 3.0.0
info:
  title: Cybedefend API
  description: >-
    CybeDefend is an advanced API for application security analysis. Key
    features include OAuth 2.0 authentication, user/organization/project
    management, and REBAC-based permissions. It excels in static, dynamic, and
    IaC security analyses (SAST, DAST, IaC, etc.).
  version: '1.0'
  contact: {}
servers:
  - url: https://api-eu.cybedefend.com
    description: EU
  - url: https://api-us.cybedefend.com
    description: US
security: []
tags: []
paths:
  /integrations/dockerhub/container-registry/project/{projectId}/images:
    get:
      tags:
        - DockerHub Container Registry
      summary: List DockerHub images
      description: >-
        Lists all Docker images (repositories) available in the DockerHub
        namespace using the specified credentials
      operationId: DockerhubContainerRegistryProjectController_listImages
      parameters:
        - name: projectId
          required: true
          in: path
          description: CybeDefend project ID
          schema:
            format: uuid
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
        - name: credentialId
          required: true
          in: query
          description: Credential ID to use for authentication
          schema:
            format: uuid
            example: 550e8400-e29b-41d4-a716-446655440001
            type: string
        - name: pageSize
          required: false
          in: query
          description: 'Number of results per page (default: 20)'
          schema:
            example: 20
            type: number
        - name: page
          required: false
          in: query
          description: Page number (1-based)
          schema:
            example: 1
            type: number
      responses:
        '200':
          description: List of images retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  images:
                    type: array
                    items:
                      type: object
                    description: Array of Docker images/repositories
                  totalCount:
                    type: number
                    description: Total number of images
                  page:
                    type: number
                    description: Current page number
                  pageSize:
                    type: number
                    description: Number of items per page
        '401':
          description: Unauthorized - Invalid or missing authentication token
          content:
            application/json:
              schema:
                example:
                  message: Unauthorized
                  statusCode: 401
                  timestamp: '2025-02-18T12:31:18.491Z'
                  path: /example/path
        '403':
          description: Forbidden - Insufficient permissions to read project
          content:
            application/json:
              schema:
                example:
                  message: Forbidden
                  statusCode: 403
                  timestamp: '2025-02-18T12:31:18.491Z'
                  path: /example/path
        '404':
          description: Credential not found
          content:
            application/json:
              schema:
                example:
                  message: Resource not found
                  statusCode: 404
                  timestamp: '2025-02-18T12:31:18.491Z'
                  path: /example/path

````