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

# Lista raportów dziennych

> Lista wygenerowanych raportów dziennych KRZ/MSiG dostępnych do pobrania. Każdy raport ma ograniczony czas życia (TTL); listę można filtrować po źródle, formacie i zakresie dat.



## OpenAPI

````yaml /openapi.json get /v1/reports/daily/index
openapi: 3.1.0
info:
  title: krdata API
  description: >

    krdata udostępnia dane z polskich rejestrów gospodarczych (KRS, CRBR, KRZ,
    MSiG, biała lista VAT)

    w postaci jednego, spójnego API.


    Uwierzytelnianie odbywa się przez klucz API przekazywany w nagłówku
    `x-api-key`.

    Limity zapytań oraz dzienne pule (PDF, WPV, raporty) wynikają z wybranego
    abonamentu —

    szczegóły zwraca endpoint `GET /v1/usage/summary`.
  version: 0.1.0
servers:
  - url: https://api.krdata.pl
    description: Production
security: []
paths:
  /v1/reports/daily/index:
    get:
      tags:
        - Reports
      summary: Lista raportów dziennych
      description: >-
        Lista wygenerowanych raportów dziennych KRZ/MSiG dostępnych do pobrania.
        Każdy raport ma ograniczony czas życia (TTL); listę można filtrować po
        źródle, formacie i zakresie dat.
      operationId: reports-daily-index
      parameters:
        - name: source
          in: query
          required: false
          schema:
            anyOf:
              - enum:
                  - krz
                  - msig
                  - krs_changes
                type: string
              - type: 'null'
            title: Source
        - name: format
          in: query
          required: false
          schema:
            anyOf:
              - enum:
                  - json
                  - csv
                type: string
              - type: 'null'
            title: Format
        - name: from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            title: From
        - name: to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            title: To
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DailyReportArtifact'
                title: Response Reports-Daily-Index
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    DailyReportArtifact:
      properties:
        id:
          type: string
          title: Id
        report_date:
          type: string
          format: date
          title: Report Date
        source:
          type: string
          title: Source
        format:
          type: string
          title: Format
        row_count:
          type: integer
          title: Row Count
        size_bytes:
          type: integer
          title: Size Bytes
        generated_at:
          type: string
          format: date-time
          title: Generated At
        expires_at:
          type: string
          format: date-time
          title: Expires At
      type: object
      required:
        - id
        - report_date
        - source
        - format
        - row_count
        - size_bytes
        - generated_at
        - expires_at
      title: DailyReportArtifact
    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:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````