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

# List Registry Items



## OpenAPI

````yaml /api-reference/openapi.json get /v1/registries/{registry_id}/items
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/registries/{registry_id}/items:
    get:
      tags:
        - v1
        - protected
        - registries
      summary: List Registry Items
      operationId: list_registry_items_v1_registries__registry_id__items_get
      parameters:
        - in: path
          name: registry_id
          required: true
          schema:
            format: uuid
            title: Registry Id
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            maximum: 500
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: offset
          required: false
          schema:
            default: 0
            minimum: 0
            title: Offset
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/RegistryItemResponse'
                title: >-
                  Response List Registry Items V1 Registries  Registry Id  Items
                  Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    RegistryItemResponse:
      properties:
        created_at:
          title: Created At
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        external_id:
          title: External Id
          type: string
        id:
          format: uuid
          title: Id
          type: string
        installed_entity_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Installed Entity Id
        installed_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Installed Version
        name:
          title: Name
          type: string
        registry_id:
          format: uuid
          title: Registry Id
          type: string
        spec:
          additionalProperties: true
          title: Spec
          type: object
        tags:
          items:
            type: string
          title: Tags
          type: array
        update_available:
          title: Update Available
          type: boolean
        updated_at:
          title: Updated At
          type: string
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
      required:
        - id
        - registry_id
        - external_id
        - name
        - description
        - version
        - spec
        - tags
        - installed_entity_id
        - update_available
        - installed_version
        - created_at
        - updated_at
      title: RegistryItemResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````