> ## Documentation Index
> Fetch the complete documentation index at: https://microstrate-1133-notifications-prefs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List object store entries

> Retrieves entries from an object store bucket



## OpenAPI

````yaml /api-reference/endpoint/storage/openapi.json get /storage/obj/{bucket}/entries
openapi: 3.0.3
info:
  title: quiva.ai Gateway
  description: >-
    A comprehensive interface for managing key-value stores, object stores,
    streams, and search indexing
  contact:
    name: quiva.ai Support
    url: https://quiva.ai/help-center/
  version: 1.0.0
servers:
  - url: https://api.quiva.ai
    description: Production API server
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /storage/obj/{bucket}/entries:
    get:
      tags:
        - Object Store
      summary: List object store entries
      description: Retrieves entries from an object store bucket
      operationId: getObjectStoreEntries
      parameters:
        - $ref: '#/components/parameters/bucketName'
        - name: limit
          in: query
          description: Maximum number of entries to retrieve
          required: false
          schema:
            type: integer
            default: 10
            minimum: 1
            maximum: 1000
      responses:
        '200':
          description: Successfully retrieved entries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjectEntriesResponse'
              examples:
                media_files:
                  summary: Media file entries
                  value:
                    body:
                      results:
                        - key: images/logo.png
                          size: 24576
                        - key: images/banner.jpg
                          size: 1048576
                        - key: videos/intro.mp4
                          size: 52428800
                        - key: documents/readme.pdf
                          size: 204800
                      results_total: 4
                    metadata:
                      bucket: media-assets
                      limit: 10
                      duration: 15ms
                empty_bucket:
                  summary: Empty bucket
                  value:
                    body:
                      results: []
                      results_total: 0
                    metadata:
                      bucket: new-bucket
                      limit: 10
                      duration: 2ms
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    bucketName:
      name: bucket
      in: path
      description: Name of the bucket
      required: true
      schema:
        type: string
  schemas:
    ObjectEntriesResponse:
      type: object
      properties:
        body:
          type: object
          properties:
            results:
              type: array
              items:
                $ref: '#/components/schemas/ObjectEntriesItem'
            results_total:
              type: integer
        metadata:
          $ref: '#/components/schemas/Metadata'
    ObjectEntriesItem:
      type: object
      properties:
        key:
          type: string
        size:
          type: integer
    Metadata:
      type: object
      properties:
        bucket:
          type: string
          description: Bucket name
        duration:
          type: string
          description: Operation duration
        field:
          type: string
          description: Search field
        hits:
          type: integer
          description: Number of hits
        index_duration:
          type: string
          description: Index search duration
        index_hits:
          type: integer
          description: Number of index hits
        index_name:
          type: string
          description: Index name
        index_partitions:
          type: integer
          description: Number of index partitions
        key:
          type: string
          description: Entry key
        limit:
          type: integer
          description: Query limit
        partitions:
          type: integer
          description: Number of partitions
        search:
          type: string
          description: Search term
        stream:
          type: string
          description: Stream name
        subject:
          type: string
          description: Subject pattern
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message
  responses:
    BadRequestError:
      description: Bad Request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: validation_error
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: unauthorized
    NotFoundError:
      description: Not Found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: not_found
    InternalServerError:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: internal_error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````