> ## 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.

# Komunikaty KNF

> Komunikaty Komisji Nadzoru Finansowego (KNF) posortowane po dacie aktualizacji (`update_date` malejąco). Zwraca komunikaty z wybranego zakresu dat (`from`, `to`) z paginacją (`limit` do 1000, `offset`). Opcjonalny parametr `q` (można podać wielokrotnie) filtruje wyniki po nazwie — dopasowanie częściowe, bez rozróżniania wielkości liter, do tytułu lub treści komunikatu. Komunikaty nie są powiązane z konkretnymi podmiotami — to publiczne stanowiska i informacje regulatora. Funkcja wymaga planu Pro lub wyższego. Każdy zwrócony wynik = 1 jednostka puli **MSiG i KRZ**.



## OpenAPI

````yaml /openapi.json get /v1/knf/announcements
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/knf/announcements:
    get:
      tags:
        - KNF
      summary: Komunikaty KNF
      description: >-
        Komunikaty Komisji Nadzoru Finansowego (KNF) posortowane po dacie
        aktualizacji (`update_date` malejąco). Zwraca komunikaty z wybranego
        zakresu dat (`from`, `to`) z paginacją (`limit` do 1000, `offset`).
        Opcjonalny parametr `q` (można podać wielokrotnie) filtruje wyniki po
        nazwie — dopasowanie częściowe, bez rozróżniania wielkości liter, do
        tytułu lub treści komunikatu. Komunikaty nie są powiązane z konkretnymi
        podmiotami — to publiczne stanowiska i informacje regulatora. Funkcja
        wymaga planu Pro lub wyższego. Każdy zwrócony wynik = 1 jednostka puli
        **MSiG i KRZ**.
      operationId: knf-announcements
      parameters:
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: Fuzzy search term(s); matches title or body (case-insensitive)
            title: Q
          description: Fuzzy search term(s); matches title or body (case-insensitive)
        - 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
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KnfAnnouncementPage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    KnfAnnouncementPage:
      properties:
        items:
          items:
            $ref: '#/components/schemas/KnfAnnouncementItem'
          type: array
          title: Items
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - items
        - limit
        - offset
        - has_more
      title: KnfAnnouncementPage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    KnfAnnouncementItem:
      properties:
        article_id:
          type: string
          title: Article Id
        url:
          type: string
          title: Url
        title:
          type: string
          title: Title
        text:
          anyOf:
            - type: string
            - type: 'null'
          title: Text
        update_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Update Date
      type: object
      required:
        - article_id
        - url
        - title
      title: KnfAnnouncementItem
    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

````