CrunchDAO quickstarter API

The quickstarter API from CrunchDAO — 7 operation(s) for quickstarter.

Operations 10

GET /v2/competitions/{competitionIdentifier}/quickstarters List quickstarters of a competition. #
POST /v2/competitions/{competitionIdentifier}/quickstarters Create a quickstarter for a competition. #
POST /v2/competitions/{competitionIdentifier}/quickstarters/~ Update the quickstarter library. #
GET /v2/competitions/{competitionIdentifier}/quickstarters/{quickstarterName} Show a quickstarter of a competition. #
POST /v2/competitions/{competitionIdentifier}/quickstarters/{quickstarterName} Update a quickstarter of a competition. #
DELETE /v2/competitions/{competitionIdentifier}/quickstarters/{quickstarterName} Delete a quickstarter of a competition. #
GET /v1/quickstarters/generic/{competitionFormat} List generic quickstarters. #
GET /v1/quickstarters/generic/{competitionFormat}/{quickstarterName} Show a generic quickstarter. #
GET /v1/quickstarters/competitions/{competitionIdentifier} List quickstarters of a competition. #
GET /v1/quickstarters/competitions/{competitionIdentifier}/{quickstarterName} Show a quickstarter of a competition. #

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-quickstarter-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-quickstarter-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Quickstarter API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: quickstarter
paths:
  /v2/competitions/{competitionIdentifier}/quickstarters:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: List quickstarters of a competition.
      operationId: listCompetitionQuickstarters
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Quickstarter'
    post:
      tags:
      - quickstarter
      summary: Create a quickstarter for a competition.
      operationId: createCompetitionQuickstarter
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuickstarterCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quickstarter'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/quickstarters/~:
    x-service-id: competition-service
    post:
      tags:
      - quickstarter
      summary: Update the quickstarter library.
      operationId: batchCreateQuickstarter
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchQuickstarterCreateForm'
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuickstarterImporterDelta'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/quickstarters/{quickstarterName}:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: Show a quickstarter of a competition.
      operationId: getCompetitionQuickstarter
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: quickstarterName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quickstarter'
    post:
      tags:
      - quickstarter
      summary: Update a quickstarter of a competition.
      operationId: updateCompetitionQuickstarter
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: quickstarterName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuickstarterUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quickstarter'
      security:
      - accessToken: []
      - apiKey: []
    delete:
      tags:
      - quickstarter
      summary: Delete a quickstarter of a competition.
      operationId: deleteCompetitionQuickstarter
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: quickstarterName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '202':
          description: Accepted
      security:
      - accessToken: []
      - apiKey: []
  /v1/quickstarters/generic/{competitionFormat}:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: List generic quickstarters.
      operationId: listGenericQuickstartersV1
      parameters:
      - name: competitionFormat
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
          enum:
          - TIMESERIES
          - DAG
          - STREAM
          - SPATIAL
          - UNSTRUCTURED
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Quickstarter'
      deprecated: true
  /v1/quickstarters/generic/{competitionFormat}/{quickstarterName}:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: Show a generic quickstarter.
      operationId: getGenericQuickstarterV1
      parameters:
      - name: competitionFormat
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
          enum:
          - TIMESERIES
          - DAG
          - STREAM
          - SPATIAL
          - UNSTRUCTURED
      - name: quickstarterName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quickstarter'
      deprecated: true
  /v1/quickstarters/competitions/{competitionIdentifier}:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: List quickstarters of a competition.
      operationId: listCompetitionQuickstartersV1
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Quickstarter'
      deprecated: true
  /v1/quickstarters/competitions/{competitionIdentifier}/{quickstarterName}:
    x-service-id: competition-service
    get:
      tags:
      - quickstarter
      summary: Show a quickstarter of a competition.
      operationId: getCompetitionQuickstarterV1
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: quickstarterName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quickstarter'
      deprecated: true
components:
  schemas:
    Language:
      type: string
      enum:
      - PYTHON
      - R
    BatchQuickstarterCreateForm:
      type: object
      properties:
        quickstarters:
          type: array
          items:
            $ref: '#/components/schemas/QuickstarterCreateForm'
      required:
      - quickstarters
    QuickstarterUsage:
      type: string
      enum:
      - SUBMISSION
      - EXPLORATION
    QuickstarterAuthor:
      type: object
      properties:
        name:
          type: string
        link:
          type: string
    QuickstarterImporterDelta:
      type: object
      properties:
        added:
          type: integer
          format: int32
        updated:
          type: integer
          format: int32
        deleted:
          type: integer
          format: int32
    QuickstarterUpdateForm:
      type: object
      properties:
        title:
          type: string
        description:
          type: string
        authors:
          type: array
          items:
            $ref: '#/components/schemas/QuickstarterAuthorCreateForm'
        language:
          type: string
          enum:
          - PYTHON
          - R
        usage:
          type: string
          enum:
          - SUBMISSION
          - EXPLORATION
        notebook:
          type: boolean
        entrypoint:
          type: string
        deprecated:
          type: boolean
        kaggleUrl:
          type: string
        files:
          type: array
          items:
            type: string
      required:
      - authors
      - deprecated
      - entrypoint
      - files
      - language
      - notebook
      - title
      - usage
    QuickstarterAuthorCreateForm:
      type: object
      properties:
        name:
          type: string
        link:
          type: string
      required:
      - name
    QuickstarterFile:
      type: object
      properties:
        name:
          type: string
        url:
          type: string
        githubUrl:
          type: string
    Quickstarter:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        title:
          type: string
        description:
          type: string
        authors:
          type: array
          items:
            $ref: '#/components/schemas/QuickstarterAuthor'
        language:
          $ref: '#/components/schemas/Language'
        usage:
          $ref: '#/components/schemas/QuickstarterUsage'
        notebook:
          type: boolean
        entrypoint:
          type: string
        githubUrl:
          type: string
        colabUrl:
          type: string
        kaggleUrl:
          type: string
        deprecated:
          type: boolean
        files:
          type: array
          items:
            $ref: '#/components/schemas/QuickstarterFile'
        createdAt:
          type: string
          format: date-time
    QuickstarterCreateForm:
      type: object
      properties:
        title:
          type: string
        description:
          type: string
        authors:
          type: array
          items:
            $ref: '#/components/schemas/QuickstarterAuthorCreateForm'
        language:
          type: string
          enum:
          - PYTHON
          - R
        usage:
          type: string
          enum:
          - SUBMISSION
          - EXPLORATION
        notebook:
          type: boolean
        entrypoint:
          type: string
        deprecated:
          type: boolean
        kaggleUrl:
          type: string
        files:
          type: array
          items:
            type: string
        name:
          type: string
      required:
      - authors
      - deprecated
      - entrypoint
      - files
      - language
      - name
      - notebook
      - title
      - usage
  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