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

# Koncentracje UOKiK

> Zgłoszenia zamiaru koncentracji do Prezesa UOKiK, posortowane po dacie publikacji (`posted_date` malejąco). Każdy wpis zawiera datę wpływu wniosku, sygnaturę sprawy, wnioskodawcę/wnioskodawców, opis koncentracji, stan sprawy oraz skrótowy opis. Zwraca wpisy z wybranego zakresu dat (`from`, `to`) z paginacją (`limit` do 1000, `offset`). Opcjonalny parametr `q` (można podać wielokrotnie) filtruje wyniki — dopasowanie częściowe, bez rozróżniania wielkości liter, do tytułu, wnioskodawcy lub sygnatury sprawy. Wpisy nie są powiązane z konkretnymi podmiotami w bazie — zawierają wyłącznie nazwy stron. Funkcja wymaga planu Pro lub wyższego. Każdy zwrócony wynik = 1 jednostka puli **MSiG i KRZ**.



## OpenAPI

````yaml /openapi.json get /v1/uokik/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/uokik/announcements:
    get:
      tags:
        - UOKiK
      summary: Koncentracje UOKiK
      description: >-
        Zgłoszenia zamiaru koncentracji do Prezesa UOKiK, posortowane po dacie
        publikacji (`posted_date` malejąco). Każdy wpis zawiera datę wpływu
        wniosku, sygnaturę sprawy, wnioskodawcę/wnioskodawców, opis
        koncentracji, stan sprawy oraz skrótowy opis. Zwraca wpisy z wybranego
        zakresu dat (`from`, `to`) z paginacją (`limit` do 1000, `offset`).
        Opcjonalny parametr `q` (można podać wielokrotnie) filtruje wyniki —
        dopasowanie częściowe, bez rozróżniania wielkości liter, do tytułu,
        wnioskodawcy lub sygnatury sprawy. Wpisy nie są powiązane z konkretnymi
        podmiotami w bazie — zawierają wyłącznie nazwy stron. Funkcja wymaga
        planu Pro lub wyższego. Każdy zwrócony wynik = 1 jednostka puli **MSiG i
        KRZ**.
      operationId: uokik-announcements
      parameters:
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: >-
              Fuzzy search term(s); matches title, applicant or case signature
              (case-insensitive)
            title: Q
          description: >-
            Fuzzy search term(s); matches title, applicant or case signature
            (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/UokikConcentrationPage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    UokikConcentrationPage:
      properties:
        items:
          items:
            $ref: '#/components/schemas/UokikConcentrationItem'
          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: UokikConcentrationPage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    UokikConcentrationItem:
      properties:
        slug:
          type: string
          title: Slug
        url:
          type: string
          title: Url
        title:
          type: string
          title: Title
        posted_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Posted Date
        application_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Application Date
        case_signature:
          anyOf:
            - type: string
            - type: 'null'
          title: Case Signature
        applicant:
          anyOf:
            - type: string
            - type: 'null'
          title: Applicant
        scope:
          anyOf:
            - type: string
            - type: 'null'
          title: Scope
        case_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Case Status
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
      type: object
      required:
        - slug
        - url
        - title
      title: UokikConcentrationItem
    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

````