University of Warsaw Patent Public API

The PatentPublic API from University of Warsaw — 1 operation(s) for patentpublic.

Operations 1

GET /api/v1/PatentPublic Listowanie danych o patentach #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/university-of-warsaw-patentpublic-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

university-of-warsaw-patentpublic-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Patent Public API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: PatentPublic
paths:
  /api/v1/PatentPublic:
    get:
      tags:
      - PatentPublic
      summary: Listowanie danych o patentach
      operationId: queryForPatentPublic
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 1000
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: cfUri
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseQueryPatentPublicItemResponse'
      security:
      - Authorization: []
components:
  schemas:
    OdataResponseQueryPatentPublicItemResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/QueryPatentPublicItemResponse'
        totalCount:
          type: integer
          format: int32
    QueryPatentPublicItemResponse:
      type: object
      properties:
        cfPatId:
          type: string
          description: id patentu
        cfCountryCodes:
          type: array
          description: kody państw, na terytorium których uzyskano ochronę
          items:
            type: string
            description: kody państw, na terytorium których uzyskano ochronę
        cfRegisterDate:
          type: string
          description: data zarejestrowania patentu
          format: date
        cfApprovDate:
          type: string
          description: data zatwierdzenia patentu
          format: date
        cfPatentNum:
          type: string
          description: numer patentu
        cfUri:
          type: string
          description: uri do informacji źródłowej o patencie
        cfTitle:
          type: string
          description: tytuł patentu pobierany z abstraktu o najniższym indeksie
        cfKeyw:
          type: array
          description: słowa kluczowe patentu pobierane z abstraktu o najniższym indeksie
          items:
            type: string
            description: słowa kluczowe patentu pobierane z abstraktu o najniższym indeksie
        year:
          type: integer
          description: rok
          format: int32
        applicationNumber:
          type: string
          description: numer zgłoszenia patentowego
        businessEntityObtainedBy:
          type: string
          description: podmiot pozyskujący
        businessEntityGrantedBy:
          type: string
          description: podmiot udzielający
        referenceNumber:
          type: string
          description: numer referencyjny
        translationDate:
          type: string
          description: data tłumaczenia
          format: date
        protectionType:
          type: string
          description: rodzaj ochrony
        protectionSubject:
          type: string
          description: przedmiot ochrony
        protectionStatus:
          type: string
          description: status ochrony
        financialNumber:
          type: string
          description: numer finansowy
        applicationCountry:
          type: array
          description: kraj zgłoszenia
          items:
            type: string
            description: kraj zgłoszenia
        applicationProcedure:
          type: string
          description: procedura zgłoszenia
        applicationNumberUPRP:
          type: string
          description: numer zgłoszenia UPRP
        endProtectionDate:
          type: string
          description: data końca ochrony
          format: date
        validationCountry:
          type: string
          description: państwo walidacji
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header