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

# Get apiv1publicrepositories



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/public/repositories
openapi: 3.1.0
info:
  title: Orchestrator Control Plane API
  description: ''
  license:
    name: ''
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/public/repositories:
    get:
      tags:
        - public_repositories
      operationId: list_public_repositories
      responses:
        '200':
          description: List of public repositories
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPublicRepositoriesResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListPublicRepositoriesResponse:
      type: object
      description: Response body for GET /api/v1/public/repositories
      required:
        - repositories
      properties:
        repositories:
          type: array
          items:
            $ref: '#/components/schemas/PublicRepositoryInfo'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Reason of error
        success:
          type: boolean
          description: 'Is always: false'
    PublicRepositoryInfo:
      type: object
      description: Public repository information (includes owner org name for namespacing)
      required:
        - repo_id
        - org_name
        - name
        - full_name
        - created_at
      properties:
        created_at:
          type: string
          format: date-time
          description: When the repository was created
        description:
          type:
            - string
            - 'null'
          description: Optional description
        full_name:
          type: string
          description: 'Full reference: org_name/repo_name'
        name:
          type: string
          description: The repository name
        org_name:
          type: string
          description: The owning organization's name (namespace)
        repo_id:
          type: string
          format: uuid
          description: The repository's unique identifier

````