University of Warsaw Giveaway API

The Giveaway API from University of Warsaw — 7 operation(s) for giveaway.

Operations 13

GET /api/v1/Giveaway/{id} Get giveaway by id #
PUT /api/v1/Giveaway/{id} Update giveaway #
DELETE /api/v1/Giveaway/{id} Delete giveaway #
GET /api/v1/Giveaway/{id}/Permission Get permissions #
PUT /api/v1/Giveaway/{id}/Permission Update permissions #
PUT /api/v1/Giveaway/{giveawayId}/Code/{codeId} Set giveaway code as used #
DELETE /api/v1/Giveaway/{giveawayId}/Code/{codeId} Remove giveaway code #
GET /api/v1/Giveaway Find all giveaways #
POST /api/v1/Giveaway Create giveaway #
GET /api/v1/Giveaway/{id}/Code Get codes for giveaway #
POST /api/v1/Giveaway/{id}/Code Create codes for giveaway #
POST /api/v1/Giveaway/{giveawayId}/Code/{personId} Give code to person 1 #
POST /api/v1/Giveaway/{giveawayId}/Code/Import Import codes to giveaway #

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-giveaway-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-giveaway-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Giveaway API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: Giveaway
paths:
  /api/v1/Giveaway/{id}:
    get:
      tags:
      - Giveaway
      operationId: getGiveawayById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/GiveawayResponse'
      security:
      - Authorization: []
      summary: Get giveaway by id
      x-summary-source: derived
    put:
      tags:
      - Giveaway
      operationId: updateGiveaway
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GiveawayRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/GiveawayResponse'
      security:
      - Authorization: []
      summary: Update giveaway
      x-summary-source: derived
    delete:
      tags:
      - Giveaway
      operationId: deleteGiveaway
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Delete giveaway
      x-summary-source: derived
  /api/v1/Giveaway/{id}/Permission:
    get:
      tags:
      - Giveaway
      operationId: getPermissions
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PermissionResponse'
      security:
      - Authorization: []
      summary: Get permissions
      x-summary-source: derived
    put:
      tags:
      - Giveaway
      operationId: updatePermissions
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PermissionRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PermissionResponse'
      security:
      - Authorization: []
      summary: Update permissions
      x-summary-source: derived
  /api/v1/Giveaway/{giveawayId}/Code/{codeId}:
    put:
      tags:
      - Giveaway
      operationId: setGiveawayCodeAsUsed
      parameters:
      - name: giveawayId
        in: path
        required: true
        schema:
          type: string
      - name: personId
        in: query
        required: true
        schema:
          type: string
      - name: codeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Set giveaway code as used
      x-summary-source: derived
    delete:
      tags:
      - Giveaway
      operationId: removeGiveawayCode
      parameters:
      - name: giveawayId
        in: path
        required: true
        schema:
          type: string
      - name: codeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Remove giveaway code
      x-summary-source: derived
  /api/v1/Giveaway:
    get:
      tags:
      - Giveaway
      operationId: findAllGiveaways
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GiveawayResponse'
      security:
      - Authorization: []
      summary: Find all giveaways
      x-summary-source: derived
    post:
      tags:
      - Giveaway
      operationId: createGiveaway
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GiveawayRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/GiveawayResponse'
      security:
      - Authorization: []
      summary: Create giveaway
      x-summary-source: derived
  /api/v1/Giveaway/{id}/Code:
    get:
      tags:
      - Giveaway
      operationId: getCodesForGiveaway
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GiveawayCodeResponse'
      security:
      - Authorization: []
      summary: Get codes for giveaway
      x-summary-source: derived
    post:
      tags:
      - Giveaway
      operationId: createCodesForGiveaway
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GiveawayCodeResponse'
      security:
      - Authorization: []
      summary: Create codes for giveaway
      x-summary-source: derived
  /api/v1/Giveaway/{giveawayId}/Code/{personId}:
    post:
      tags:
      - Giveaway
      operationId: giveCodeToPerson_1
      parameters:
      - name: giveawayId
        in: path
        required: true
        schema:
          type: string
      - name: personId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Give code to person 1
      x-summary-source: derived
  /api/v1/Giveaway/{giveawayId}/Code/Import:
    post:
      tags:
      - Giveaway
      operationId: importCodesToGiveaway
      parameters:
      - name: giveawayId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - multipartFile
              type: object
              properties:
                multipartFile:
                  type: string
                  format: binary
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GiveawayCodeResponse'
      security:
      - Authorization: []
      summary: Import codes to giveaway
      x-summary-source: derived
components:
  schemas:
    GiveawayRequest:
      required:
      - endDate
      - startDate
      type: object
      properties:
        name:
          type: string
        nameEn:
          type: string
        url:
          type: string
        urlEn:
          type: string
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
    PermissionResponse:
      type: object
      properties:
        permissions:
          type: object
          additionalProperties:
            type: integer
            format: int32
    GiveawayResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        nameEn:
          type: string
        url:
          type: string
        urlEn:
          type: string
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
    GiveawayCodeResponse:
      type: object
      properties:
        id:
          type: string
        code:
          type: string
        personId:
          type: string
        receivedAt:
          type: string
          format: date
        used:
          type: boolean
    PermissionRequest:
      type: object
      properties:
        permissions:
          type: object
          additionalProperties:
            type: integer
            format: int32
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header