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

# Preview Storage Object



## OpenAPI

````yaml GET /storage/objects/{object_id}/preview
openapi: 3.1.0
info:
  title: eomer.ai Forecasting API
  description: >-
    Production-grade time series forecasting and natural-language forecasting
    agent
  version: 0.1.0
servers: []
security: []
tags:
  - name: forecasting
    description: Time-series forecasting jobs
  - name: agent
    description: >-
      Natural-language forecasting: extract intent from a prompt, profile and
      recommend a model, and auto-submit a forecast.
  - name: tabular
    description: Classification and regression
  - name: fine-tuning
    description: Custom model training
  - name: storage
    description: Cloud dataset storage
  - name: estimates
    description: Cost and runtime estimation
  - name: system
    description: Health checks and model catalog
paths:
  /storage/objects/{object_id}/preview:
    get:
      tags:
        - storage
      summary: Preview Object
      operationId: preview_object_storage_objects__object_id__preview_get
      parameters:
        - name: object_id
          in: path
          required: true
          schema:
            type: string
            title: Object Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StorageObjectPreviewResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StorageObjectPreviewResponse:
      properties:
        object_id:
          type: string
          title: Object Id
        columns:
          items:
            type: string
          type: array
          title: Columns
        sample:
          items:
            additionalProperties:
              type: string
            type: object
          type: array
          title: Sample
        total_preview_rows:
          type: integer
          title: Total Preview Rows
        detected_timestamp_column:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Timestamp Column
        detected_target_column:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Target Column
        detected_item_id_column:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Item Id Column
        detected_frequency:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected Frequency
      type: object
      required:
        - object_id
        - columns
        - sample
        - total_preview_rows
      title: StorageObjectPreviewResponse
      description: Preview payload for a tenant-owned CSV object.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````