CrunchDAO calendar API

The calendar API from CrunchDAO — 2 operation(s) for calendar.

Operations 5

GET /v1/calendar/events List a calendar events. #
POST /v1/calendar/events Create a calendar event. #
GET /v1/calendar/events/{eventId} Show a calendar event. #
DELETE /v1/calendar/events/{eventId} Delete a calendar event. #
PATCH /v1/calendar/events/{eventId} Update a calendar event. #

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/crunchdao-calendar-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

crunchdao-calendar-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Calendar API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: calendar
paths:
  /v1/calendar/events:
    x-service-id: competition-service
    get:
      tags:
      - calendar
      summary: List a calendar events.
      operationId: listCalendarEvents
      parameters:
      - name: start
        in: query
        description: Filter events that start after a date.
        required: false
        style: form
        explode: true
        schema:
          type: string
          format: date
          description: Filter events that start after a date.
      - name: end
        in: query
        description: Filter events that end before a date.
        required: false
        style: form
        explode: true
        schema:
          type: string
          format: date
          description: Filter events that end before a date.
      - name: sort
        in: query
        description: Sort events.
        required: false
        style: form
        explode: true
        schema:
          type: string
          description: Sort events.
          enum:
          - RECENT
          - LATEST
      - name: page
        in: query
        description: Zero-based page index (0..N)
        required: false
        style: form
        explode: true
        schema:
          type: integer
          default: 0
          minimum: 0
      - name: size
        in: query
        description: The size of the page to be returned
        required: false
        style: form
        explode: true
        schema:
          type: integer
          default: 20
          minimum: 1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageCalendarEvent'
    post:
      tags:
      - calendar
      summary: Create a calendar event.
      operationId: createCalendarEvent
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CalendarEventCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarEvent'
  /v1/calendar/events/{eventId}:
    x-service-id: competition-service
    get:
      tags:
      - calendar
      summary: Show a calendar event.
      operationId: show_1
      parameters:
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarEvent'
    delete:
      tags:
      - calendar
      summary: Delete a calendar event.
      operationId: deleteCalendarEvent
      parameters:
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '202':
          description: Accepted
    patch:
      tags:
      - calendar
      summary: Update a calendar event.
      operationId: updateCalendarEvent
      parameters:
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CalendarEventUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarEvent'
components:
  schemas:
    PageCalendarEvent:
      type: object
      properties:
        pageNumber:
          type: integer
          format: int64
        pageSize:
          type: integer
          format: int64
        totalElements:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int64
        content:
          type: array
          items:
            $ref: '#/components/schemas/CalendarEvent'
    CalendarEvent:
      type: object
      properties:
        id:
          type: integer
          format: int64
        date:
          type: string
          format: date
        title:
          type: string
        location:
          type: string
        time:
          type: string
          format: time
          $anchor: https://en.wikipedia.org/wiki/ISO_8601
          $comment: ISO 8601 Time
          example: 01:02:03
        url:
          type: string
    CalendarEventCreateForm:
      type: object
      properties:
        date:
          type: string
          format: date
        title:
          type: string
        location:
          type: string
        time:
          type: string
          format: time
          $anchor: https://en.wikipedia.org/wiki/ISO_8601
          $comment: ISO 8601 Time
          example: 01:02:03
        url:
          type: string
      required:
      - date
      - title
    CalendarEventUpdateForm:
      type: object
      properties:
        date:
          type: string
          format: date
        title:
          type: string
        location:
          type: string
        time:
          type: string
          format: time
          $anchor: https://en.wikipedia.org/wiki/ISO_8601
          $comment: ISO 8601 Time
          example: 01:02:03
        url:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      name: apiKey
      in: query
      scheme: token
    accessToken:
      type: http
      in: header
      scheme: Bearer
externalDocs:
  description: docs.crunchdao.com
  url: https://docs.crunchdao.com