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

# Api Catalog Sample

> A bounded sample of rows for one catalogued table (default 25, max 100).
Identifiers are validated against the live schema and back-tick quoted.



## OpenAPI

````yaml /api/openapi.json get /api/catalog/sample
openapi: 3.1.0
info:
  description: >-
    Environment-aware APIs for Platinur configuration, integrations, operations,
    promotions, scheduling, monitoring, and assistant tasks.
  title: Platinur Control Plane API
  version: 1.0.0-rc3
servers:
  - description: Local Platinur control-plane API
    url: http://localhost:8080
security: []
paths:
  /api/catalog/sample:
    get:
      tags:
        - Control Plane
      summary: Api Catalog Sample
      description: |-
        A bounded sample of rows for one catalogued table (default 25, max 100).
        Identifiers are validated against the live schema and back-tick quoted.
      operationId: api_catalog_sample_api_catalog_sample_get
      parameters:
        - in: query
          name: env
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Env
        - in: query
          name: database
          required: false
          schema:
            default: ''
            title: Database
            type: string
        - in: query
          name: table
          required: false
          schema:
            default: ''
            title: Table
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 25
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        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

````